rust/tests/run-make/link-args-order/rmake.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
973 B
Rust
Raw Normal View History

2024-06-06 10:55:24 -05:00
// Passing linker arguments to the compiler used to be lost or reordered in a messy way
// as they were passed further to the linker. This was fixed in #70665, and this test
// checks that linker arguments remain intact and in the order they were originally passed in.
// See https://github.com/rust-lang/rust/pull/70665
//@ ignore-msvc
// Reason: the ld linker does not exist on Windows.
2024-06-06 10:55:24 -05:00
use run_make_support::rustc;
fn main() {
2024-06-06 14:20:42 -05:00
rustc()
.input("empty.rs")
.linker_flavor("ld")
.link_arg("a")
.link_args("b c")
.link_args("d e")
2024-06-06 14:20:42 -05:00
.link_arg("f")
.run_fail()
.assert_stderr_contains(r#""a" "b" "c" "d" "e" "f""#);
2024-06-06 14:20:42 -05:00
rustc()
.input("empty.rs")
.linker_flavor("ld")
.arg("-Zpre-link-arg=a")
.arg("-Zpre-link-args=b c")
.arg("-Zpre-link-args=d e")
.arg("-Zpre-link-arg=f")
2024-06-06 14:20:42 -05:00
.run_fail()
.assert_stderr_contains(r#""a" "b" "c" "d" "e" "f""#);
2024-06-06 10:55:24 -05:00
}