]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
[ng] rename: am__count_test_result -> am.test-suite.count-results
authorStefano Lattarini <stefano.lattarini@gmail.com>
Fri, 27 Jul 2012 12:33:55 +0000 (14:33 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Fri, 27 Jul 2012 12:33:55 +0000 (14:33 +0200)
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
lib/am/parallel-tests.am

index 4fab059c10d0ece819e1abfe520bd7ed6469ab31..cd7fa275ff54ef08e368c41dc8a692536dffa80b 100644 (file)
@@ -201,7 +201,7 @@ am.test-suite.list-tests-to-recheck = $(AWK) '{ \
 # the '.trs' files of that given tests.  For example, the count of
 # PASSes will be saved in the '$am_PASS' variable, the count of SKIPs
 # in the '$am_SKIP' variable, and so on.
-am__count_test_results = $(AWK) ' \
+am.test-suite.count-results = $(AWK) ' \
 $(am.test-suite.awk-functions) \
 BEGIN { exit_status = 0; } \
 { \
@@ -325,7 +325,8 @@ $(TEST_SUITE_LOG): $(am__test_logs) $(am__test_results)
 ## unreadable test results, but they'll be appropriately updated later if
 ## needed.
        am_PASS=0 am_FAIL=0 am_SKIP=0 am_XPASS=0 am_XFAIL=0 am_ERROR=0; \
-       count_test_results_command=`$(am__count_test_results) <$$workdir/bases` \
+       count_test_results_command=`\
+         $(am.test-suite.count-results) <$$workdir/bases` \
          && eval "$$count_test_results_command" \
           || fatal "unknown error reading test results"; \
 ## Whether the testsuite was successful or not.