Skip to content

Commit

Permalink
Migrate tests/run-make/prefer-dylib to rmake.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jun 8, 2024
1 parent d8fde50 commit 0041bae
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
1 change: 0 additions & 1 deletion src/tools/tidy/src/allowed_run_make_makefiles.txt
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ run-make/pgo-gen/Makefile
run-make/pgo-indirect-call-promotion/Makefile
run-make/pgo-use/Makefile
run-make/pointer-auth-link-with-c/Makefile
run-make/prefer-dylib/Makefile
run-make/prefer-rlib/Makefile
run-make/pretty-print-to-file/Makefile
run-make/pretty-print-with-dep-file/Makefile
Expand Down
9 changes: 0 additions & 9 deletions tests/run-make/prefer-dylib/Makefile

This file was deleted.

20 changes: 20 additions & 0 deletions tests/run-make/prefer-dylib/rmake.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//@ ignore-cross-compile

use run_make_support::{read_dir, run, run_fail, rustc, tmp_dir};
use std::fs::remove_file;
use std::process::Command;

fn main() {
rustc().input("bar.rs").crate_type("dylib").crate_type("rlib").arg("-Cprefer-dynamic").run();
rustc().input("foo.rs").arg("-Cprefer-dynamic").run();

run("foo");

read_dir(tmp_dir(), |path| {
if !path.is_dir() && path.file_name().unwrap().to_str().unwrap().contains("bar") {
remove_file(path).unwrap();
}
});
// This time the command should fail.
run_fail("foo");
}

0 comments on commit 0041bae

Please sign in to comment.