From f08aacf7d66fac3004dbf0871006b9880968cec1 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Fri, 11 Jan 2002 07:41:50 +0000 Subject: [PATCH] Give cleaner output from "make check" --- runtests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtests.sh b/runtests.sh index 5d3af1b1..62121210 100755 --- a/runtests.sh +++ b/runtests.sh @@ -191,7 +191,6 @@ do testbase=`echo $testscript | sed 's!.*/!!' | sed -e 's/.test\$//'` scratchdir="$scratchbase.$testbase" - echo "----- $testbase starting" prep_scratch set +e @@ -201,16 +200,17 @@ do case $result in 0) - echo "----- $testbase completed successfully" + echo "PASS $testbase" passed=`expr $passed + 1` discard_scratch ;; 77) - echo "----- $testbase skipped" + echo "SKIP $testbase" skipped=`expr $skipped + 1` discard_scratch ;; *) + echo "FAIL $testbase" echo "----- $testbase failed: log follows" cat "$scratchdir/test.log" echo "----- $testbase log ends" -- 2.34.1