Skip to content

Commit 7ad5ebc

Browse files
Migrate run-make/manual-crate-name to rmake.rs
1 parent a330e49 commit 7ad5ebc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ run-make/lto-readonly-lib/Makefile
136136
run-make/lto-smoke-c/Makefile
137137
run-make/macos-deployment-target/Makefile
138138
run-make/macos-fat-archive/Makefile
139-
run-make/manual-crate-name/Makefile
140139
run-make/manual-link/Makefile
141140
run-make/many-crates-but-no-match/Makefile
142141
run-make/metadata-dep-info/Makefile

tests/run-make/manual-crate-name/Makefile

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
use run_make_support::{rustc, tmp_dir};
2+
3+
fn main() {
4+
rustc().input("bar.rs").crate_name("foo").run();
5+
assert!(tmp_dir().join("libfoo.rlib").is_file());
6+
}

0 commit comments

Comments
 (0)