Discussion:
[SCM] GNU Autoconf source repository branch, master, updated. v2.69-136-g365707e
Jim Meyering
2015-02-02 03:52:36 UTC
Permalink
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Autoconf source repository".

http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=365707e4cd057985eec36bfdab07b60ea0e50231

The branch, master has been updated
via 365707e4cd057985eec36bfdab07b60ea0e50231 (commit)
from 4774ff5c33d34bb6ad21c06f3c2b54d6e700740e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 365707e4cd057985eec36bfdab07b60ea0e50231
Author: Jim Meyering <***@fb.com>
Date: Sun Feb 1 11:41:27 2015 -0800

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".

-----------------------------------------------------------------------

Summary of changes:
tests/local.mk | 4 ++--
1 files 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)





hooks/post-receive
--
GNU Autoconf source repository
Loading...