From: H.J. Lu Date: Tue, 25 Aug 2015 18:37:31 +0000 (-0700) Subject: Don't run tst-getpid2 with LD_BIND_NOW=1 X-Git-Tag: glibc-2.23~589 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffee504f79176fe7ed522dd1e829de98befa4242;p=thirdparty%2Fglibc.git Don't run tst-getpid2 with LD_BIND_NOW=1 Since _dl_x86_64_save_sse and _dl_x86_64_restore_sse are removed now, we don't need to run tst-getpid2 with LD_BIND_NOW=1. [BZ #11214] * sysdeps/unix/sysv/linux/Makefile (tst-getpid2-ENV): Removed. --- diff --git a/ChangeLog b/ChangeLog index 5c115bfde58..b1f769e3ebc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-08-25 H.J. Lu + + [BZ #11214] + * sysdeps/unix/sysv/linux/Makefile (tst-getpid2-ENV): Removed. + 2015-08-25 Rajalakshmi Srinivasaraghavan * sysdeps/unix/sysv/linux/powerpc/kernel-features.h: Define new macros. diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index bfbabd4b4b7..2c67a6619fe 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -193,9 +193,4 @@ endif ifeq ($(subdir),nptl) tests += tst-setgetname tst-align-clone tst-getpid1 tst-getpid2 - -# In this test, we create a CLONE_VM "thread" that shares TLS storage -# with the original thread. Both threads then race in ld.so with lazy PLT -# resolution. Avoid this race by disabling lazy binding. BZ #11214. -tst-getpid2-ENV = LD_BIND_NOW=1 endif