1diff --git a/src/test/run-make/relocation-model/Makefile b/src/test/run-make/relocation-model/Makefile
2index b22f34f..c6489bd 100644
3--- a/src/test/run-make/relocation-model/Makefile
4+++ b/src/test/run-make/relocation-model/Makefile
5@@ -2,9 +2,11 @@
6
7 all: others
8 $(RUSTC) -C relocation-model=dynamic-no-pic foo.rs
9+ paxctl -czexm $(TMPDIR)/foo
10 $(call RUN,foo)
11
12 $(RUSTC) -C relocation-model=default foo.rs
13+ paxctl -czexm $(TMPDIR)/foo
14 $(call RUN,foo)
15
16 $(RUSTC) -C relocation-model=default --crate-type=dylib foo.rs
17@@ -16,6 +18,7 @@ others:
18 else
19 others:
20 $(RUSTC) -C relocation-model=static foo.rs
21+ paxctl -czexm $(TMPDIR)/foo
22 $(call RUN,foo)
23 $(RUSTC) -C relocation-model=static --crate-type=dylib foo.rs
24 endif