Skip to content

Commit 9ab6e36

Browse files
Fix broken test
Testing for ASLR by casting &ZST to *const _ is not useful, there's no guarantee that &ZST produces an ASLR'd pointer.
1 parent 649e801 commit 9ab6e36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/run-make/static-pie/test-aslr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fn main() {
1717
let arg0 = args.next().unwrap();
1818
match args.next() {
1919
Some(s) if s.eq("--report") => {
20-
println!("main = {:#?}", &main as *const _);
20+
println!("main = {:#?}", main as fn() as usize);
2121
}
2222
Some(s) if s.eq("--test-no-aslr") => {
2323
let cnt = run_self(&arg0);

0 commit comments

Comments
 (0)