From: Ralf Wildenhues Date: Wed, 11 Mar 2009 20:03:00 +0000 (+0100) Subject: parallel-tests: also record logs of SKIPped tests. X-Git-Tag: v1.10b~4^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df4f77d029cd7fe42722ab402bad105081d093b1;p=thirdparty%2Fautomake.git parallel-tests: also record logs of SKIPped tests. * lib/am/check.am [PARALLEL_TESTS] ($(TEST_SUITE_LOG)): Record SKIPs as well. Suggested by Jim Meyering. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index 8204083be..7d360d02d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2009-03-22 Ralf Wildenhues + parallel-tests: also record logs of SKIPped tests. + * lib/am/check.am [PARALLEL_TESTS] ($(TEST_SUITE_LOG)): Record + SKIPs as well. + Suggested by Jim Meyering. + Minor optimization in parallel-tests text box creation. * lib/am/check.am [PARALLEL-TESTS] (am__text_box): Use only one awk invocation, rather than several tools, to create a text box. diff --git a/lib/am/check.am b/lib/am/check.am index fc9eb69b8..28af2ee16 100644 --- a/lib/am/check.am +++ b/lib/am/check.am @@ -196,7 +196,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS) for f in $$list; do \ read line < $$f; \ case $$line in \ - SKIP:*|PASS:*|XFAIL:*);; \ + PASS:*|XFAIL:*);; \ *) echo; cat $$f;; \ esac; \ done; \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 213cab250..ff8ed798b 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -1065,7 +1065,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS) for f in $$list; do \ read line < $$f; \ case $$line in \ - SKIP:*|PASS:*|XFAIL:*);; \ + PASS:*|XFAIL:*);; \ *) echo; cat $$f;; \ esac; \ done; \