From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15481 invoked by alias); 11 Feb 2020 07:28:57 -0000 Mailing-List: contact glibc-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: , Sender: glibc-cvs-owner@sourceware.org List-Subscribe: Received: (qmail 15464 invoked by uid 9299); 11 Feb 2020 07:28:57 -0000 Date: Tue, 11 Feb 2020 07:28:00 -0000 Message-ID: <20200211072857.15463.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Florian Weimer To: glibc-cvs@sourceware.org Subject: [glibc/fw/libpthread-removal-easy] nptl: Use .NOTPARALLEL in Makefile only if actually running tests X-Act-Checkin: glibc X-Git-Author: Florian Weimer X-Git-Refname: refs/heads/fw/libpthread-removal-easy X-Git-Oldrev: 88742f2a6415fd9b5c6fd08eb4b1502e748523e0 X-Git-Newrev: 0c93537c530c6f86de32a16c4491cc9f542f65c9 X-SW-Source: 2020-q1/txt/msg00372.txt https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=0c93537c530c6f86de32a16c4491cc9f542f65c9 commit 0c93537c530c6f86de32a16c4491cc9f542f65c9 Author: Florian Weimer Date: Mon Feb 10 11:28:31 2020 +0100 nptl: Use .NOTPARALLEL in Makefile only if actually running tests It is safe to build the tests in parallel. Diff: --- nptl/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nptl/Makefile b/nptl/Makefile index ce7a4a7..9a51922 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -709,7 +709,9 @@ tst-audit-threads-ENV = LD_AUDIT=$(objpfx)tst-audit-threads-mod1.so CFLAGS-tst-unwind-thread.c += -funwind-tables -# The tests here better do not run in parallel +# The tests here better do not run in parallel. +ifeq ($(run-built-tests),yes) ifneq ($(filter %tests,$(MAKECMDGOALS)),) .NOTPARALLEL: endif +endif