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::{
16
16
//@ only-linux
17
17
// Reason: differences in the native lib compilation process causes differences
18
18
// in the --print link-args output
19
+ // FIXME: The test actually passes on windows-gnu, enable it there.
19
20
20
21
fn main ( ) {
21
22
build_native_static_lib ( "native_dep_1" ) ;
@@ -77,8 +78,10 @@ fn main() {
77
78
. stdout_utf8 ( ) ;
78
79
79
80
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 ( ) ;
82
85
83
86
assert ! ( re. is_match( & out) ) ;
84
87
}
You can’t perform that action at this time.
0 commit comments