We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 68c57de + 7ad5ebc commit 2c1e71bCopy full SHA for 2c1e71b
src/tools/tidy/src/allowed_run_make_makefiles.txt
@@ -135,7 +135,6 @@ run-make/lto-readonly-lib/Makefile
135
run-make/lto-smoke-c/Makefile
136
run-make/macos-deployment-target/Makefile
137
run-make/macos-fat-archive/Makefile
138
-run-make/manual-crate-name/Makefile
139
run-make/manual-link/Makefile
140
run-make/many-crates-but-no-match/Makefile
141
run-make/metadata-dep-info/Makefile
tests/run-make/manual-crate-name/Makefile
tests/run-make/manual-crate-name/rmake.rs
@@ -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