From 7753ca1f492e6319436c712f951f83a21949dfb7 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Fri, 14 Dec 2001 05:54:24 +0000 Subject: [PATCH] Only show test output if it failed. --- runtests.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/runtests.sh b/runtests.sh index 522b096d..ab6f77a5 100755 --- a/runtests.sh +++ b/runtests.sh @@ -184,7 +184,7 @@ do echo "----- $testbase starting" clean_scratch - if sh $RUNSHFLAGS "$testscript" + if sh $RUNSHFLAGS "$testscript" >"$scratchdir/test.log" 2>&1 then echo "----- $testbase completed successfully" passed=`expr $passed + 1` @@ -195,7 +195,9 @@ do skipped=`expr $skipped + 1` ;; *) - echo "----- $testbase failed!" + echo "----- $testbase failed: log follows" + cat "$scratchdir/test.log" + echo "----- $testbase log ends" failed=`expr $failed + 1` if [ "x$nopersist" = "xyes" ] then -- 2.34.1