Skip to content

Commit e16f492

Browse files
committed
Migrate relro-levels to rmake
1 parent 5a66a79 commit e16f492

File tree

3 files changed

+29
-23
lines changed

3 files changed

+29
-23
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ run-make/raw-dylib-inline-cross-dylib/Makefile
151151
run-make/raw-dylib-link-ordinal/Makefile
152152
run-make/raw-dylib-stdcall-ordinal/Makefile
153153
run-make/redundant-libs/Makefile
154-
run-make/relro-levels/Makefile
155154
run-make/remap-path-prefix-dwarf/Makefile
156155
run-make/remap-path-prefix/Makefile
157156
run-make/reproducible-build-2/Makefile

tests/run-make/relro-levels/Makefile

-22
This file was deleted.

tests/run-make/relro-levels/rmake.rs

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// This tests the different -Crelro-level values, and makes sure that they work properly.
2+
3+
//@ ignore-cross-compile
4+
//@ only-linux
5+
6+
use run_make_support::llvm_readobj;
7+
use run_make_support::rustc;
8+
9+
fn compile(relro_level: &str) {
10+
rustc().arg(format!("-Crelro-level={relro_level}")).input("hello.rs").run();
11+
}
12+
13+
fn main() {
14+
// Ensure that binaries built with the full relro level links them with both
15+
// RELRO and BIND_NOW for doing eager symbol resolving.
16+
17+
compile("full");
18+
llvm_readobj().program_headers().input("hello").run().assert_stdout_contains("GNU_RELRO");
19+
llvm_readobj().dynamic_table().input("hello").run().assert_stdout_contains("BIND_NOW");
20+
21+
compile("partial");
22+
llvm_readobj().program_headers().input("hello").run().assert_stdout_contains("GNU_RELRO");
23+
24+
// Ensure that we're *not* built with RELRO when setting it to off. We do
25+
// not want to check for BIND_NOW however, as the linker might have that
26+
// enabled by default.
27+
compile("off");
28+
llvm_readobj().program_headers().input("hello").run().assert_stdout_not_contains("GNU_RELRO");
29+
}

0 commit comments

Comments
 (0)