summaryrefslogtreecommitdiff
path: root/t/check8.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/check8.sh')
-rw-r--r--t/check8.sh8
1 files changed, 2 insertions, 6 deletions
diff --git a/t/check8.sh b/t/check8.sh
index 743d1bd00..41fe30796 100644
--- a/t/check8.sh
+++ b/t/check8.sh
@@ -64,10 +64,7 @@ $AUTOCONF
$AUTOMAKE -a
./configure
-AM_COLOR_TESTS=always $MAKE check >stdout 2>stderr &&
- { cat stdout; cat stderr >&2; exit 1; }
-cat stdout
-cat stderr >&2
+run_make -E -O -e FAIL check
grep 'XPASS.* foo$' stdout
grep '^[^X]*PASS.* sub/foo$' stdout
grep '^[^X]*PASS.* bar' stdout
@@ -84,8 +81,7 @@ $MAKE distclean
mkdir build
cd build
../configure
-$MAKE check >stdout && { cat stdout; exit 1; }
-cat stdout
+run_make -O -e FAIL check
# Note: we are not grepping for the space in the lines from the 'foo'
# tests, due to the Solaris make VPATH rewriting (if we fix that, we
# can still write a separate test for it).