From: Jim Meyering Date: Sun, 1 Feb 2015 19:41:27 +0000 (-0800) Subject: tests: avoid two false-positive parallel test failures X-Git-Tag: v2.69b~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=365707e4cd057985eec36bfdab07b60ea0e50231;p=thirdparty%2Fautoconf.git 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". --- diff --git a/tests/local.mk b/tests/local.mk index 27da6d98..dba9a485 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)