We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0b8da4 commit abdaed2Copy full SHA for abdaed2
tests/run-make/no-intermediate-extras/rmake.rs
@@ -8,12 +8,12 @@
8
use run_make_support::{rustc, tmp_dir};
9
10
fn main() {
11
- rustc().crate_type("rlib").arg("--test").input("foo.rs").run();
+ rustc().crate_type("rlib").arg("--test").input("foo.rs").run();
12
match fs::remove_file(tmp_dir().join("foo.bc")) {
13
Ok(_) => {
14
println!("An unwanted .bc file was created by run-make/no-intermediate-extras.");
15
std::process::exit(0);
16
- },
+ }
17
Err(e) => {
18
std::process::exit(1);
19
}
0 commit comments