diff options
author | Jim Meyering <meyering@fb.com> | 2015-02-01 11:41:27 -0800 |
---|---|---|
committer | Jim Meyering <meyering@fb.com> | 2015-02-01 19:51:10 -0800 |
commit | 365707e4cd057985eec36bfdab07b60ea0e50231 (patch) | |
tree | e4d493586c94a59a8deb5415a02e724c92b402b9 /tests | |
parent | 4774ff5c33d34bb6ad21c06f3c2b54d6e700740e (diff) | |
download | autoconf-365707e4cd057985eec36bfdab07b60ea0e50231.tar.gz |
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".
Diffstat (limited to 'tests')
-rw-r--r-- | tests/local.mk | 4 |
1 files changed, 2 insertions, 2 deletions
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) |