diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-10-27 20:27:40 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-10-27 20:27:40 +0000 |
commit | b1f68750871f1d447fb7d36b24590084239730b5 (patch) | |
tree | ecdd086d98ff3bf509a78a866f1e765876751fe0 /elf/Makefile | |
parent | 778cddad1775602453d3a8ca5797e39f2632de66 (diff) | |
download | glibc-b1f68750871f1d447fb7d36b24590084239730b5.tar glibc-b1f68750871f1d447fb7d36b24590084239730b5.tar.gz glibc-b1f68750871f1d447fb7d36b24590084239730b5.tar.bz2 glibc-b1f68750871f1d447fb7d36b24590084239730b5.zip |
Update.
2004-10-27 Ulrich Drepper <drepper@redhat.com>
* elf/dl-fini.c (_dl_fini): Fix search for map in maps array.
Reverse order of namespaces.
* elf/Makefile: Add rules to build and run tst-dlmopen3.
* elf/tst-dlmopen3.c: New file.
* elf/tst-dlmopen1mod.c: Add check whether constructor runs.
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index 0bec4abbb7..028be25b2d 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -154,7 +154,7 @@ tests += loadtest restest1 preloadtest loadfail multiload origtest resolvfail \ circleload1 tst-tls3 tst-tls4 tst-tls5 tst-tls6 tst-tls7 tst-tls8 \ tst-tls10 tst-tls11 tst-tls12 tst-tls13 tst-tls14 tst-align \ $(tests-execstack-$(have-z-execstack)) tst-dlmodcount \ - tst-dlopenrpath tst-deep1 tst-dlmopen1 tst-dlmopen2 + tst-dlopenrpath tst-deep1 tst-dlmopen1 tst-dlmopen2 tst-dlmopen3 # reldep9 test-srcs = tst-pathopt tests-vis-yes = vismain @@ -770,3 +770,6 @@ $(objpfx)tst-dlmopen1.out: $(objpfx)tst-dlmopen1mod.so $(objpfx)tst-dlmopen2: $(libdl) $(objpfx)tst-dlmopen2.out: $(objpfx)tst-dlmopen1mod.so + +$(objpfx)tst-dlmopen3: $(libdl) +$(objpfx)tst-dlmopen3.out: $(objpfx)tst-dlmopen1mod.so |