diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-11-11 09:28:21 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-11-18 17:17:58 -0300 |
commit | ed3ce71f5c64c5f07cbde0ef03554ea8950d8f2c (patch) | |
tree | 0510cc6754006d88cb384c37a8834509954e9074 /elf/Makefile | |
parent | bdeb7a8fa9989d18dab6310753d04d908125dc1d (diff) | |
download | glibc-ed3ce71f5c64c5f07cbde0ef03554ea8950d8f2c.tar.gz glibc-ed3ce71f5c64c5f07cbde0ef03554ea8950d8f2c.tar.xz glibc-ed3ce71f5c64c5f07cbde0ef03554ea8950d8f2c.zip |
elf: Move la_activity (LA_ACT_ADD) after _dl_add_to_namespace_list() (BZ #28062)
It ensures that the the namespace is guaranteed to not be empty. Checked on x86_64-linux-gnu. Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index 2365c0c863..4723c159cb 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -229,7 +229,8 @@ tests += restest1 preloadtest loadfail multiload origtest resolvfail \ tst-tls-ie tst-tls-ie-dlmopen argv0test \ tst-glibc-hwcaps tst-glibc-hwcaps-prepend tst-glibc-hwcaps-mask \ tst-tls20 tst-tls21 tst-dlmopen-dlerror tst-dlmopen-gethostbyname \ - tst-dl-is_dso tst-ro-dynamic + tst-dl-is_dso tst-ro-dynamic \ + tst-audit18 \ # reldep9 tests-internal += loadtest unload unload2 circleload1 \ neededtest neededtest2 neededtest3 neededtest4 \ @@ -370,6 +371,8 @@ modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \ tst-tls20mod-bad tst-tls21mod tst-dlmopen-dlerror-mod \ tst-auxvalmod \ tst-dlmopen-gethostbyname-mod tst-ro-dynamic-mod \ + tst-auditmod18 \ + tst-audit18mod \ # Most modules build with _ISOMAC defined, but those filtered out # depend on internal headers. @@ -1543,6 +1546,10 @@ $(objpfx)tst-audit16-cmp.out: tst-audit16.exp $(objpfx)tst-audit16.out cmp $^ > $@; \ $(evaluate-test) +$(objpfx)tst-audit18.out: $(objpfx)tst-auditmod18.so \ + $(objpfx)tst-audit18mod.so +tst-audit18-ARGS = -- $(host-test-program-cmd) + # tst-sonamemove links against an older implementation of the library. LDFLAGS-tst-sonamemove-linkmod1.so = \ -Wl,--version-script=tst-sonamemove-linkmod1.map \ |