Skip to content

Commit 74cc27f

Browse files
authored
Rollup merge of #128603 - ChrisDenton:used, r=jieyouxu
Update run-make/used to use `any_symbol_contains` This makes it so we don't need `nm` or `llvm-nm`. I also tested that `BAR` is removed. I'm not sure if this is wanted though.
2 parents 6b3160e + eb45146 commit 74cc27f

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

tests/run-make/used/rmake.rs

+3-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@
44
// It comes from #39987 which implements this RFC for the #[used] attribute:
55
// https://rust-lang.github.io/rfcs/2386-used.html
66

7-
//@ ignore-msvc
8-
9-
use run_make_support::{cmd, rustc};
7+
use run_make_support::rustc;
8+
use run_make_support::symbols::any_symbol_contains;
109

1110
fn main() {
1211
rustc().opt_level("3").emit("obj").input("used.rs").run();
13-
14-
cmd("nm").arg("used.o").run().assert_stdout_contains("FOO");
12+
assert!(any_symbol_contains("used.o", &["FOO"]));
1513
}

tests/run-make/used/used.rs

-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,3 @@
22

33
#[used]
44
static FOO: u32 = 0;
5-
6-
static BAR: u32 = 0;

0 commit comments

Comments
 (0)