From: Martin Pool Date: Fri, 11 Jan 2002 07:41:50 +0000 (+0000) Subject: Give cleaner output from "make check" X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/f08aacf7d66fac3004dbf0871006b9880968cec1 Give cleaner output from "make check" --- 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"