diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-03-31 11:26:55 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-03-31 11:26:55 +0200 |
commit | 7d45c163d00c88d5875a112343c4ea3e61349e6b (patch) | |
tree | 2b4b34faa346c380ce3e635b50e45c87ca2dbdfc /elf/Makefile | |
parent | 258ec8abc1fb26b800cb22c374c242ea98111679 (diff) | |
download | glibc-7d45c163d00c88d5875a112343c4ea3e61349e6b.tar.gz glibc-7d45c163d00c88d5875a112343c4ea3e61349e6b.tar.xz glibc-7d45c163d00c88d5875a112343c4ea3e61349e6b.zip |
Report dlsym, dlvsym lookup errors using dlerror [BZ #19509]
* elf/dl-lookup.c (_dl_lookup_symbol_x): Report error even if skip_map != NULL. * elf/tst-dlsym-error.c: New file. * elf/Makefile (tests): Add tst-dlsym-error. (tst-dlsym-error): Link against libdl.
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index 7b6d6d712c..bb23d93890 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -149,7 +149,7 @@ tests += loadtest restest1 preloadtest loadfail multiload origtest resolvfail \ tst-nodelete) \ tst-initorder tst-initorder2 tst-relsort1 tst-null-argv \ tst-ptrguard1 tst-tlsalign tst-tlsalign-extern tst-nodelete-opened \ - tst-nodelete2 tst-audit11 tst-audit12 + tst-nodelete2 tst-audit11 tst-audit12 tst-dlsym-error # reldep9 ifeq ($(build-hardcoded-path-in-tests),yes) tests += tst-dlopen-aout @@ -1257,3 +1257,5 @@ $(objpfx)tst-prelink-cmp.out: tst-prelink.exp \ $(objpfx)tst-ldconfig-X.out : tst-ldconfig-X.sh $(objpfx)ldconfig $(SHELL) $< '$(common-objpfx)' '$(test-wrapper)' '$(test-wrapper-env)' > $@; \ $(evaluate-test) + +$(objpfx)tst-dlsym-error: $(libdl) |