3 files changed +16
-17
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,6 @@ run-make/native-link-modifier-whole-archive/Makefile
185
185
run-make/no-alloc-shim/Makefile
186
186
run-make/no-builtins-attribute/Makefile
187
187
run-make/no-builtins-lto/Makefile
188
- run-make/no-cdylib-as-rdylib/Makefile
189
188
run-make/no-duplicate-libs/Makefile
190
189
run-make/no-intermediate-extras/Makefile
191
190
run-make/obey-crate-type-flag/Makefile
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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