From: Stefano Lattarini Date: Fri, 27 Jul 2012 11:28:30 +0000 (+0200) Subject: [ng] rename: am__list_recheck_tests -> am.test-suite.list-tests-to-recheck X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f58810d1df9c4c6d48e63b3e2bfcbc276dd860dc;p=thirdparty%2Fautomake.git [ng] rename: am__list_recheck_tests -> am.test-suite.list-tests-to-recheck Signed-off-by: Stefano Lattarini --- diff --git a/lib/am/parallel-tests.am b/lib/am/parallel-tests.am index 01358b1fb..c087fb63b 100644 --- a/lib/am/parallel-tests.am +++ b/lib/am/parallel-tests.am @@ -149,7 +149,7 @@ am.test-suite.awk-io-loop/END = \ # A command that, given a newline-separated list of test names on the # standard input, print the name of the tests that are to be re-run # upon "make recheck". -am.test-suite-list-recheck = $(AWK) '{ \ +am.test-suite.list-tests-to-recheck = $(AWK) '{ \ ## By default, we assume the test is to be re-run. recheck = 1; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ @@ -445,7 +445,7 @@ recheck: all %CHECK_DEPS% @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) ## If running a "make recheck", we must only consider tests that had an ## unexpected outcome (FAIL or XPASS) in the earlier run. - @bases=`$(am.test-suite-list-recheck) \ + @bases=`$(am.test-suite.list-tests-to-recheck) \ <$(am.test-harness.workdir)/bases` || exit 1; \ ## Remove newlines and normalize whitespace. bases=`echo $$bases`; \