Skip to content

Commit cf37bbf

Browse files
authored
Unrolled build for rust-lang#126064
Rollup merge of rust-lang#126064 - GuillaumeGomez:migrate-run-make-manual-crate-name, r=jieyouxu Migrate `run-make/manual-crate-name` to `rmake.rs` Part of rust-lang#121876. r? ``@jieyouxu``
2 parents 98489f2 + 7ad5ebc commit cf37bbf

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
@@ -135,7 +135,6 @@ run-make/lto-readonly-lib/Makefile
135135
run-make/lto-smoke-c/Makefile
136136
run-make/macos-deployment-target/Makefile
137137
run-make/macos-fat-archive/Makefile
138-
run-make/manual-crate-name/Makefile
139138
run-make/manual-link/Makefile
140139
run-make/many-crates-but-no-match/Makefile
141140
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)