diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-05-22 23:29:47 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-05-22 23:59:56 +0200 |
commit | e2a000cc181b4a66564b8378cad6843d1938f80a (patch) | |
tree | 4072c641c3cb1c1b07fcee0515c886c661763fc1 /t/tap-basic.sh | |
parent | 20963917dd4c0591f2983bd6a94426361bd53fa5 (diff) | |
download | automake-e2a000cc181b4a66564b8378cad6843d1938f80a.tar.gz |
tests: avoid use of redirected 'run_make' invocations
Instead, properly use the -E, -O, or -M options of run_make.
The occurrences of the 'run_make' invocations using output
redirection has been found by the recently-introduced maintainer
check 'sc_tests_no_run_make_redirect'.
* t/ax/tap-summary-aux.sh: Adjust.
* t/ax/testsuite-summary-checks.sh: Likewise.
* Several other tests: Likewise.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/tap-basic.sh')
-rw-r--r-- | t/tap-basic.sh | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/t/tap-basic.sh b/t/tap-basic.sh index 5e4462b26..c146088a2 100644 --- a/t/tap-basic.sh +++ b/t/tap-basic.sh @@ -127,9 +127,7 @@ Bail out! ok 1 END -run_make check TESTS=bail.test >stdout && { cat stdout; exit 1; } -cat stdout - +run_make -O -e FAIL check TESTS=bail.test count_test_results total=1 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=1 test ! -e success.log @@ -146,9 +144,7 @@ $FGREP 'success.test' stdout && exit 1 rm -f *.log *.test -run_make check TEST_LOGS=ok.log >stdout || { cat stdout; exit 1; } -cat stdout - +run_make -O check TEST_LOGS=ok.log count_test_results total=3 pass=1 fail=0 xpass=0 xfail=1 skip=1 error=0 test -f ok.test |