From patchwork Tue Aug 25 12:24:33 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "H.J. Lu" X-Patchwork-Id: 8423 Received: (qmail 100053 invoked by alias); 25 Aug 2015 12:24:37 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 99074 invoked by uid 89); 25 Aug 2015 12:24:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=AWL, BAYES_40, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f48.google.com X-Received: by 10.66.219.227 with SMTP id pr3mr55049400pac.140.1440505474219; Tue, 25 Aug 2015 05:24:34 -0700 (PDT) Date: Tue, 25 Aug 2015 05:24:33 -0700 From: "H.J. Lu" To: GNU C Library Subject: [PATCH 7/7] Don't run tst-getpid2 with LD_BIND_NOW=1 Message-ID: <20150825122433.GF1588@gmail.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) 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. OK for master? H.J. --- * sysdeps/unix/sysv/linux/Makefile (tst-getpid2-ENV): Removed. --- sysdeps/unix/sysv/linux/Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index bfbabd4..2c67a66 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