projects
/
platform
/
upstream
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27d8344
)
nptl: Use .NOTPARALLEL in Makefile only if actually running tests
author
Florian Weimer
<fweimer@redhat.com>
Mon, 10 Feb 2020 10:28:31 +0000
(11:28 +0100)
committer
Florian Weimer
<fweimer@redhat.com>
Thu, 20 Feb 2020 07:57:01 +0000
(08:57 +0100)
It is safe to build the tests in parallel.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
nptl/Makefile
patch
|
blob
|
history
diff --git
a/nptl/Makefile
b/nptl/Makefile
index
2911a3d
..
e4250fd
100644
(file)
--- a/
nptl/Makefile
+++ b/
nptl/Makefile
@@
-693,7
+693,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