Skip to content

Commit c575b26

Browse files
committed
rewrite extern-multiple-copies2 to rmake
1 parent 4332f5d commit c575b26

File tree

3 files changed

+24
-12
lines changed

3 files changed

+24
-12
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ run-make/emit-to-stdout/Makefile
1717
run-make/export-executable-symbols/Makefile
1818
run-make/extern-flag-disambiguates/Makefile
1919
run-make/extern-fn-reachable/Makefile
20-
run-make/extern-multiple-copies2/Makefile
2120
run-make/fmt-write-bloat/Makefile
2221
run-make/foreign-double-unwind/Makefile
2322
run-make/foreign-exceptions/Makefile

tests/run-make/extern-multiple-copies2/Makefile

-11
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Almost identical to `extern-multiple-copies`, but with a variation in the --extern calls
2+
// and the addition of #[macro_use] in the rust code files, which used to break --extern
3+
// until #33625.
4+
// In this test, the rust library foo1 exists in two different locations, but only one
5+
// is required by the --extern flag. This test checks that the copy is ignored (as --extern
6+
// demands fetching only the original instance of foo1) and that no error is emitted, resulting
7+
// in successful compilation.
8+
// https://github.com/rust-lang/rust/issues/33762
9+
10+
// FIXME(Oneirical): test-various
11+
12+
use run_make_support::{path, rfs, rust_lib_name, rustc};
13+
14+
fn main() {
15+
rustc().input("foo1.rs").run();
16+
rustc().input("foo2.rs").run();
17+
rfs::create_dir("foo");
18+
rfs::copy(rust_lib_name("foo1"), path("foo").join(rust_lib_name("foo1")));
19+
rustc()
20+
.input("bar.rs")
21+
.extern_("foo1", path("foo").join(rust_lib_name("foo1")))
22+
.extern_("foo2", rust_lib_name("foo2"))
23+
.run();
24+
}

0 commit comments

Comments
 (0)