summaryrefslogtreecommitdiff
path: root/t/test-driver-custom-multitest.sh
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2013-05-22 23:29:47 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2013-05-22 23:59:56 +0200
commite2a000cc181b4a66564b8378cad6843d1938f80a (patch)
tree4072c641c3cb1c1b07fcee0515c886c661763fc1 /t/test-driver-custom-multitest.sh
parent20963917dd4c0591f2983bd6a94426361bd53fa5 (diff)
downloadautomake-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/test-driver-custom-multitest.sh')
-rw-r--r--t/test-driver-custom-multitest.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/t/test-driver-custom-multitest.sh b/t/test-driver-custom-multitest.sh
index a21174a12..868eab0bd 100644
--- a/t/test-driver-custom-multitest.sh
+++ b/t/test-driver-custom-multitest.sh
@@ -158,10 +158,8 @@ for vpath in : false; do
grep '%% pass-xpass-fail-xfail-skip-error %%' test-suite.log
test $(grep -c '%% ' test-suite.log) -eq 4
- run_make TESTS='pass.t pass3-skip2-xfail.t' check >stdout \
- || { cat stdout; cat test-suite.log; exit 1; }
+ run_make -O TESTS='pass.t pass3-skip2-xfail.t' check
cat test-suite.log
- cat stdout
count_test_results total=7 pass=4 fail=0 skip=2 xfail=1 xpass=0 error=0
cd $srcdir