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-bailout.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-bailout.sh')
-rw-r--r-- | t/tap-bailout.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/t/tap-bailout.sh b/t/tap-bailout.sh index b6c0f56d1..94100f4c1 100644 --- a/t/tap-bailout.sh +++ b/t/tap-bailout.sh @@ -118,10 +118,7 @@ echo "ERROR: e.test - Bail out!" >> exp # Doing the sums above, we have: test_counts='total=12 pass=3 fail=1 xpass=1 xfail=1 skip=1 error=5' -run_make TESTS='a.test b.test c.test d.test e.test' check >stdout \ - && { cat stdout; exit 1; } -cat stdout - +run_make -O -e FAIL TESTS='a.test b.test c.test d.test e.test' check count_test_results $test_counts LC_ALL=C sort exp > t |