From patchwork Tue Jan 16 20:46:56 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 25423 Received: (qmail 48826 invoked by alias); 16 Jan 2018 20:47:08 -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 48817 invoked by uid 89); 16 Jan 2018 20:47:07 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com Date: Tue, 16 Jan 2018 21:46:56 +0100 To: libc-alpha@sourceware.org Subject: [PATCH COMMITTED] nptl/tst-thread-exit-clobber: Run with any C++ compiler User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Message-Id: <20180116204656.5E701405D5834@oldenburg.str.redhat.com> From: fweimer@redhat.com (Florian Weimer) We do not need thread_local support in the C++11 comiler, and the minimum GCC version for glibc has C++11 support (if it has C++ support). 2018-01-16 Florian Weimer * nptl/Makefile [$(have-cxx-thread_local)] (tests-unsupported): Move tst-thread-exit-clobber ... [$(CXX)] (tests-unsupported): ... to here. diff --git a/nptl/Makefile b/nptl/Makefile index a11a25bbff..7940b3d26b 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -461,11 +461,11 @@ endif ifeq (,$(CXX)) # These tests require a C++ compiler and runtime. tests-unsupported += tst-cancel24 tst-cancel24-static tst-once5 \ - tst-minstack-throw + tst-thread-exit-clobber tst-minstack-throw endif # These tests require a C++ compiler and runtime with thread_local support. ifneq ($(have-cxx-thread_local),yes) -tests-unsupported += tst-thread_local1 tst-thread-exit-clobber +tests-unsupported += tst-thread_local1 endif include ../Rules