File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
tests/run-make/rlib-format-packed-bundled-libs-3 Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ use run_make_support::{
1616//@ only-linux
1717// Reason: differences in the native lib compilation process causes differences
1818// in the --print link-args output
19+ // FIXME: The test actually passes on windows-gnu, enable it there.
1920
2021fn main ( ) {
2122 build_native_static_lib ( "native_dep_1" ) ;
@@ -77,8 +78,10 @@ fn main() {
7778 . stdout_utf8 ( ) ;
7879
7980 let re = regex:: Regex :: new (
80- "--whole-archive.*native_dep_1.*--whole-archive.*lnative_dep_2.*no-whole-archive.*lnative_dep_4"
81- ) . unwrap ( ) ;
81+ "--whole-archive.*native_dep_1.*--whole-archive.*libnative_dep_2.a\
82+ .*no-whole-archive.*libnative_dep_4.a",
83+ )
84+ . unwrap ( ) ;
8285
8386 assert ! ( re. is_match( & out) ) ;
8487}
You can’t perform that action at this time.
0 commit comments