[v5,3/4] elf: Add tst-execstack-prog-static
Checks
Context |
Check |
Description |
redhat-pt-bot/TryBot-apply_patch |
success
|
Patch applied to master at the time it was sent
|
linaro-tcwg-bot/tcwg_glibc_build--master-aarch64 |
success
|
Build passed
|
linaro-tcwg-bot/tcwg_glibc_build--master-arm |
success
|
Build passed
|
linaro-tcwg-bot/tcwg_glibc_check--master-arm |
success
|
Test passed
|
linaro-tcwg-bot/tcwg_glibc_check--master-aarch64 |
success
|
Test passed
|
Commit Message
Similar to tst-execstack-prog, check if executable stacks works for
statically linked programs.
---
elf/Makefile | 7 +++++++
elf/tst-execstack-prog-static.c | 1 +
2 files changed, 8 insertions(+)
create mode 100644 elf/tst-execstack-prog-static.c
@@ -553,6 +553,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
ifeq ($(have-depaudit),yes)
tests += \
@@ -647,6 +650,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 \
@@ -1916,6 +1920,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
new file mode 100644
@@ -0,0 +1 @@
+#include <tst-execstack-prog.c>