Skip to content

Commit 8ebabba

Browse files
committed
Fix some more tests
1 parent e850650 commit 8ebabba

File tree

1 file changed

+5
-2
lines changed
  • tests/run-make/rlib-format-packed-bundled-libs-3

1 file changed

+5
-2
lines changed

Diff for: tests/run-make/rlib-format-packed-bundled-libs-3/rmake.rs

+5-2
Original file line numberDiff line numberDiff 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

2021
fn 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
}

0 commit comments

Comments
 (0)