diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-09-30 01:39:14 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-09-30 01:39:32 -0700 |
commit | 2000067a4be0dc8a70f6d3704a9e8388eb9066c9 (patch) | |
tree | 5cffa757bae1be8d0d0d0a451d1418da1e963843 | |
parent | 1e2bffd05c36a9be30d7092d6593a9e9aa009ada (diff) | |
download | glibc-2000067a4be0dc8a70f6d3704a9e8388eb9066c9.tar.gz glibc-2000067a4be0dc8a70f6d3704a9e8388eb9066c9.tar.xz glibc-2000067a4be0dc8a70f6d3704a9e8388eb9066c9.zip |
Add a test for non-PIE static executable
tst-tls1-static-non-pie is built with $(no-pie-ldflag) to make it a non-PIE static executable, regardless if --enable-static-pie is used to configure glibc. * elf/Makefile (tests-static-internal): Add tst-tls1-static-non-pie. (LDFLAGS-tst-tls1-static-non-pie): New. * elf/tst-tls1-static-non-pie.c: New file.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | elf/Makefile | 5 | ||||
-rw-r--r-- | elf/tst-tls1-static-non-pie.c | 1 |
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 3636af0ed6..37cd69037a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2017-09-30 H.J. Lu <hongjiu.lu@intel.com> + + * elf/Makefile (tests-static-internal): Add + tst-tls1-static-non-pie. + (LDFLAGS-tst-tls1-static-non-pie): New. + * elf/tst-tls1-static-non-pie.c: New file. + 2017-09-29 Joseph Myers <joseph@codesourcery.com> * sysdeps/ieee754/dbl-64/s_asinh.c: Include <libm-alias-double.h>. diff --git a/elf/Makefile b/elf/Makefile index e21f37e30b..c6edebd4ee 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -149,7 +149,10 @@ tests-static-normal := tst-leaks1-static tst-array1-static tst-array5-static \ tst-tlsalign-static tst-tlsalign-extern-static \ tst-linkall-static tst-env-setuid tst-env-setuid-tunables tests-static-internal := tst-tls1-static tst-tls2-static \ - tst-ptrguard1-static tst-stackguard1-static + tst-ptrguard1-static tst-stackguard1-static \ + tst-tls1-static-non-pie + +LDFLAGS-tst-tls1-static-non-pie = $(no-pie-ldflag) tests := tst-tls9 tst-leaks1 \ tst-array1 tst-array2 tst-array3 tst-array4 tst-array5 \ diff --git a/elf/tst-tls1-static-non-pie.c b/elf/tst-tls1-static-non-pie.c new file mode 100644 index 0000000000..a01008073b --- /dev/null +++ b/elf/tst-tls1-static-non-pie.c @@ -0,0 +1 @@ +#include "tst-tls1.c" |