Skip to content

Commit 2659ff3

Browse files
authored
Rollup merge of #125104 - Oneirical:test6, r=jieyouxu
Migrate `run-make/no-cdylib-as-rdylib` to `rmake` Part of #121876 and the associated [Google Summer of Code project](https://blog.rust-lang.org/2024/05/01/gsoc-2024-selected-projects.html). > "the test will fail if the cdylib is picked, because it doesn't export any rust symbols" Is that true? Is there a way to verify? I suggest maybe extending the test with: (after cleaning the directory) ```rust rustc() .input("bar.rs") .crate_type("cdylib") .run(); rustc() .input("foo.rs") .prefer_dynamic() .run(); fail(); ``` to make sure we're actually testing something here.
2 parents 4f7d9d4 + 1f61cc3 commit 2659ff3

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ run-make/native-link-modifier-whole-archive/Makefile
178178
run-make/no-alloc-shim/Makefile
179179
run-make/no-builtins-attribute/Makefile
180180
run-make/no-builtins-lto/Makefile
181-
run-make/no-cdylib-as-rdylib/Makefile
182181
run-make/no-duplicate-libs/Makefile
183182
run-make/no-intermediate-extras/Makefile
184183
run-make/obey-crate-type-flag/Makefile

tests/run-make/no-cdylib-as-rdylib/Makefile

-16
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// This test produces an rlib and a cdylib from bar.rs.
2+
// Then, foo.rs attempts to link to the bar library.
3+
// If the test passes, that means rustc favored the rlib and ignored the cdylib.
4+
// If the test fails, that is because the cdylib was picked, which does not export
5+
// any Rust symbols.
6+
// See https://github.com/rust-lang/rust/pull/113695
7+
8+
//@ ignore-cross-compile
9+
10+
use run_make_support::{run, rustc};
11+
12+
fn main() {
13+
rustc().input("bar.rs").crate_type("rlib").crate_type("cdylib").run();
14+
rustc().input("foo.rs").arg("-Cprefer-dynamic").run();
15+
run("foo");
16+
}

0 commit comments

Comments
 (0)