From: Stefano Lattarini Date: Fri, 27 Jul 2012 11:01:39 +0000 (+0200) Subject: [ng] rename: am__test_result_rx -> am.test-suite.rx.result X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e7f8ae0ec53617fac548a5fe14cc714a3f1aa2f;p=thirdparty%2Fautomake.git [ng] rename: am__test_result_rx -> am.test-suite.rx.result Signed-off-by: Stefano Lattarini --- diff --git a/lib/am/parallel-tests.am b/lib/am/parallel-tests.am index 5f7be894e..07d37caba 100644 --- a/lib/am/parallel-tests.am +++ b/lib/am/parallel-tests.am @@ -114,7 +114,7 @@ $(call am.util.strip-suffixes, $(TEST_EXTENSIONS), \ am__recheck_rx = ^[ ]*:recheck:[ ]* am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* -am__test_result_rx = ^[ ]*:test-result:[ ]* +am.test-suite.rx.result = ^[ ]*:test-result:[ ]* am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* # Some awk code fragments used by one another and eventually by the @@ -205,9 +205,9 @@ $(am.test-suite.awk-functions) \ BEGIN { exit_status = 0; } \ { \ $(call am.test-suite.awk-io-loop/BEGIN,trs) \ - if (line ~ /$(am__test_result_rx)/) \ + if (line ~ /$(am.test-suite.rx.result)/) \ { \ - sub("$(am__test_result_rx)", "", line); \ + sub("$(am.test-suite.rx.result)", "", line); \ sub("[: ].*$$", "", line); \ counts[line]++;\ } \