Skip to content

Commit f90d4e4

Browse files
committed
Migrate static-pie to rmake
1 parent e16f492 commit f90d4e4

File tree

3 files changed

+46
-19
lines changed

3 files changed

+46
-19
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ run-make/split-debuginfo/Makefile
176176
run-make/stable-symbol-names/Makefile
177177
run-make/static-dylib-by-default/Makefile
178178
run-make/static-extern-type/Makefile
179-
run-make/static-pie/Makefile
180179
run-make/staticlib-blank-lib/Makefile
181180
run-make/staticlib-dylib-linkage/Makefile
182181
run-make/std-core-cycle/Makefile

tests/run-make/static-pie/Makefile

-18
This file was deleted.

tests/run-make/static-pie/rmake.rs

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// How to manually run this
2+
// $ ./x.py test --target x86_64-unknown-linux-[musl,gnu] tests/run-make/static-pie
3+
4+
//@ only-x86_64
5+
//@ only-linux
6+
//@ ignore-32bit
7+
8+
use std::process::Command;
9+
10+
use run_make_support::llvm_readobj;
11+
use run_make_support::rustc;
12+
use run_make_support::{cmd, run_with_args, target};
13+
14+
fn ok_compiler_version(compiler: &str) -> bool {
15+
let check_file = format!("check_{compiler}_version.sh");
16+
17+
Command::new(check_file).status().is_ok_and(|status| status.success())
18+
}
19+
20+
fn test(compiler: &str) {
21+
if !ok_compiler_version(compiler) {
22+
return;
23+
}
24+
25+
rustc()
26+
.input("test-aslr.rs")
27+
.target(&target())
28+
.linker(compiler)
29+
.arg("-Clinker-flavor=gcc")
30+
.arg("-Ctarget-feature=+crt-static")
31+
.run();
32+
33+
llvm_readobj()
34+
.symbols()
35+
.input("test-aslr")
36+
.run()
37+
.assert_stdout_not_contains("INTERP")
38+
.assert_stdout_contains("DYNAMIC");
39+
40+
run_with_args("test-aslr", &["--test-aslr"]);
41+
}
42+
43+
fn main() {
44+
test("clang");
45+
test("gcc");
46+
}

0 commit comments

Comments
 (0)