elf: Add tst-execstack-prog-static

Similar to tst-execstack-prog, check if executable stacks works for
statically linked programs.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
This commit is contained in:
Adhemerval Zanella 2024-11-28 14:36:44 -03:00
parent 0ca8785a28
commit c9540704ac
2 changed files with 8 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1 @@
#include <tst-execstack-prog.c>