From: Stefano Lattarini Date: Fri, 27 Jul 2012 11:18:13 +0000 (+0200) Subject: [ng] rename: am__global_test_result_rx -> am.test-suite.rx.global-result X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19867565c4c59061f46df8da4e4de6e130964376;p=thirdparty%2Fautomake.git [ng] rename: am__global_test_result_rx -> am.test-suite.rx.global-result Signed-off-by: Stefano Lattarini --- diff --git a/lib/am/parallel-tests.am b/lib/am/parallel-tests.am index 61bbca384..50926ba03 100644 --- a/lib/am/parallel-tests.am +++ b/lib/am/parallel-tests.am @@ -113,7 +113,7 @@ $(call am.util.strip-suffixes, $(TEST_EXTENSIONS), \ ?HANDLE-EXEEXT? $(patsubst %$(EXEEXT),%,$(1))))) am.test-suite.rx.recheck = ^[ ]*:recheck:[ ]* -am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am.test-suite.rx.global-result = ^[ ]*:global-test-result:[ ]* am.test-suite.rx.result = ^[ ]*:test-result:[ ]* am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* @@ -249,9 +249,9 @@ BEGIN { exit_status = 0; } \ copy_in_global_log = 1; \ global_test_result = "RUN"; \ $(call am.test-suite.awk-io-loop/BEGIN,trs) \ - if (line ~ /$(am__global_test_result_rx)/) \ + if (line ~ /$(am.test-suite.rx.global-result)/) \ { \ - sub("$(am__global_test_result_rx)", "", line); \ + sub("$(am.test-suite.rx.global-result)", "", line); \ sub("[ ]*$$", "", line); \ global_test_result = line; \ } \