From 365707e4cd057985eec36bfdab07b60ea0e50231 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering@fb.com>
Date: Sun, 1 Feb 2015 11:41:27 -0800
Subject: [PATCH] tests: avoid two false-positive parallel test failures

* tests/local.mk (check-local): Add a leading "+",
to void false-positive test failures when running
them in parallel.  Before this change, running e.g.,
"make check TESTSUITEFLAGS=--jobs=15" would always
fail the two "make"-invoking tests: "C unit tests"
and "C unit tests (EXEEXT)".
(installcheck-local): Likewise for "installcheck".
---
 tests/local.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/local.mk b/tests/local.mk
index 27da6d9..dba9a48 100644
--- a/tests/local.mk
+++ b/tests/local.mk
@@ -155,11 +155,11 @@ clean-local:
 	rm -f -r autom4te.cache

 check-local: tests/atconfig tests/atlocal $(TESTSUITE)
-	$(run_testsuite) $(TESTSUITEFLAGS)
+	+$(run_testsuite) $(TESTSUITEFLAGS)

 # Run the test suite on the *installed* tree.
 installcheck-local: tests/atconfig tests/atlocal $(TESTSUITE)
-	$(run_testsuite) AUTOTEST_PATH="$(bindir)" $(TESTSUITEFLAGS)
+	+$(run_testsuite) AUTOTEST_PATH="$(bindir)" $(TESTSUITEFLAGS)



-- 
2.2.2

