mirror of git://sourceware.org/git/glibc.git
[BZ#14767] Remove tests for have-initfini-array in elf/Makefile
* elf/Makefile (tests): Remove conditional for have-initfini-array since this is now always required and the variable does not exist anymore. (tests-static): Likewise. (modules-names): Likewise.
This commit is contained in:
parent
e717036357
commit
e5088dc687
|
@ -1,5 +1,12 @@
|
||||||
2012-10-30 Andreas Jaeger <aj@suse.de>
|
2012-10-30 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
[BZ#14767]
|
||||||
|
* elf/Makefile (tests): Remove conditional for have-initfini-array
|
||||||
|
since this is now always required and the variable does not exist
|
||||||
|
anymore.
|
||||||
|
(tests-static): Likewise.
|
||||||
|
(modules-names): Likewise.
|
||||||
|
|
||||||
* po/eo.po: Add Esperanto translation from translation project.
|
* po/eo.po: Add Esperanto translation from translation project.
|
||||||
|
|
||||||
* elf/tst-array1.c (fini_array): Make writeable so that it can be
|
* elf/tst-array1.c (fini_array): Make writeable so that it can be
|
||||||
|
|
2
NEWS
2
NEWS
|
@ -17,7 +17,7 @@ Version 2.17
|
||||||
14477, 14505, 14510, 14516, 14518, 14519, 14530, 14532, 14538, 14543,
|
14477, 14505, 14510, 14516, 14518, 14519, 14530, 14532, 14538, 14543,
|
||||||
14544, 14545, 14557, 14562, 14568, 14576, 14579, 14583, 14587, 14602,
|
14544, 14545, 14557, 14562, 14568, 14576, 14579, 14583, 14587, 14602,
|
||||||
14621, 14638, 14645, 14648, 14652, 14660, 14661, 14683, 14694, 14716,
|
14621, 14638, 14645, 14648, 14652, 14660, 14661, 14683, 14694, 14716,
|
||||||
14743.
|
14743, 14767.
|
||||||
|
|
||||||
* Support for STT_GNU_IFUNC symbols added for s390 and s390x.
|
* Support for STT_GNU_IFUNC symbols added for s390 and s390x.
|
||||||
Optimized versions of memcpy, memset, and memcmp added for System z10 and
|
Optimized versions of memcpy, memset, and memcmp added for System z10 and
|
||||||
|
|
17
elf/Makefile
17
elf/Makefile
|
@ -115,20 +115,15 @@ $(inst_auditdir)/sotruss-lib.so: $(objpfx)sotruss-lib.so $(+force)
|
||||||
$(do-install-program)
|
$(do-install-program)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
tests = tst-tls1 tst-tls2 tst-tls9 tst-leaks1
|
tests = tst-tls1 tst-tls2 tst-tls9 tst-leaks1 \
|
||||||
ifeq (yes,$(have-initfini-array))
|
tst-array1 tst-array2 tst-array3 tst-array4 tst-array5
|
||||||
tests += tst-array1 tst-array2 tst-array3 tst-array4 tst-array5
|
|
||||||
endif
|
|
||||||
tests-static = tst-tls1-static tst-tls2-static tst-stackguard1-static \
|
tests-static = tst-tls1-static tst-tls2-static tst-stackguard1-static \
|
||||||
tst-leaks1-static
|
tst-leaks1-static tst-array1-static tst-array5-static
|
||||||
ifeq (yes,$(build-shared))
|
ifeq (yes,$(build-shared))
|
||||||
tests-static += tst-tls9-static
|
tests-static += tst-tls9-static
|
||||||
tst-tls9-static-ENV = \
|
tst-tls9-static-ENV = \
|
||||||
LD_LIBRARY_PATH=$(objpfx):$(common-objpfx):$(common-objpfx)dlfcn
|
LD_LIBRARY_PATH=$(objpfx):$(common-objpfx):$(common-objpfx)dlfcn
|
||||||
endif
|
endif
|
||||||
ifeq (yes,$(have-initfini-array))
|
|
||||||
tests-static += tst-array1-static tst-array5-static
|
|
||||||
endif
|
|
||||||
tests += $(tests-static)
|
tests += $(tests-static)
|
||||||
ifeq (yes,$(build-shared))
|
ifeq (yes,$(build-shared))
|
||||||
tests += loadtest restest1 preloadtest loadfail multiload origtest resolvfail \
|
tests += loadtest restest1 preloadtest loadfail multiload origtest resolvfail \
|
||||||
|
@ -215,10 +210,8 @@ modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \
|
||||||
tst-initordera3 tst-initordera4 \
|
tst-initordera3 tst-initordera4 \
|
||||||
tst-initorder2a tst-initorder2b tst-initorder2c \
|
tst-initorder2a tst-initorder2b tst-initorder2c \
|
||||||
tst-initorder2d \
|
tst-initorder2d \
|
||||||
tst-relsort1mod1 tst-relsort1mod2
|
tst-relsort1mod1 tst-relsort1mod2 tst-array2dep \
|
||||||
ifeq (yes,$(have-initfini-array))
|
tst-array5dep
|
||||||
modules-names += tst-array2dep tst-array5dep
|
|
||||||
endif
|
|
||||||
ifeq (yesyes,$(have-fpie)$(build-shared))
|
ifeq (yesyes,$(have-fpie)$(build-shared))
|
||||||
modules-names += tst-piemod1
|
modules-names += tst-piemod1
|
||||||
tests += tst-pie1
|
tests += tst-pie1
|
||||||
|
|
Loading…
Reference in New Issue