diff mbox series

[v7,3/4] elf: Add tst-execstack-prog-static

Message ID 20241226175834.2531046-4-adhemerval.zanella@linaro.org
State Accepted
Commit c9540704ac187e31bb35509b5e0fc1472b9ae1d9
Headers show
Series Improve executable stack handling | expand

Commit Message

Adhemerval Zanella Netto Dec. 26, 2024, 5:57 p.m. UTC
Similar to tst-execstack-prog, check if executable stacks works for
statically linked programs.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
---
 elf/Makefile                    | 7 +++++++
 elf/tst-execstack-prog-static.c | 1 +
 2 files changed, 8 insertions(+)
 create mode 100644 elf/tst-execstack-prog-static.c
diff mbox series

Patch

diff --git a/elf/Makefile b/elf/Makefile
index e8fc6bd65f..cea48e9537 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -567,6 +567,9 @@  tests-execstack-yes = \
   tst-execstack-needed \
   tst-execstack-prog \
   # tests-execstack-yes
+tests-execstack-static-yes = \
+  tst-execstack-prog-static
+  # tests-execstack-static-yes
 endif
 endif
 ifeq ($(have-depaudit),yes)
@@ -662,6 +665,7 @@  $(objpfx)tst-rtld-dash-dash.out: tst-rtld-dash-dash.sh $(objpfx)ld.so
 	$(evaluate-test)
 
 tests += $(tests-execstack-$(have-z-execstack))
+tests-static+= $(tests-execstack-static-$(have-z-execstack))
 ifeq ($(run-built-tests),yes)
 tests-special += \
   $(objpfx)tst-ldconfig-X.out \
@@ -1982,6 +1986,9 @@  LDFLAGS-tst-execstack-needed = -Wl,-z,noexecstack
 LDFLAGS-tst-execstack-prog = -Wl,-z,execstack
 CFLAGS-tst-execstack-prog.c += -Wno-trampolines
 CFLAGS-tst-execstack-mod.c += -Wno-trampolines
+
+LDFLAGS-tst-execstack-prog-static = -Wl,-z,execstack
+CFLAGS-tst-execstack-prog-static.c += -Wno-trampolines
 endif
 
 LDFLAGS-tst-array2 = -Wl,--no-as-needed
diff --git a/elf/tst-execstack-prog-static.c b/elf/tst-execstack-prog-static.c
new file mode 100644
index 0000000000..328065dd9c
--- /dev/null
+++ b/elf/tst-execstack-prog-static.c
@@ -0,0 +1 @@ 
+#include <tst-execstack-prog.c>