]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
tests: avoid two false-positive parallel test failures
authorJim Meyering <meyering@fb.com>
Sun, 1 Feb 2015 19:41:27 +0000 (11:41 -0800)
committerJim Meyering <meyering@fb.com>
Mon, 2 Feb 2015 03:51:10 +0000 (19:51 -0800)
* 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

index 27da6d9842f94b10de401e78871db5ba83c3957b..dba9a4859b4f801091012870fd7ab597589f58d3 100644 (file)
@@ -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)