Give cleaner output from "make check"
authorMartin Pool <mbp@samba.org>
Fri, 11 Jan 2002 07:41:50 +0000 (07:41 +0000)
committerMartin Pool <mbp@samba.org>
Fri, 11 Jan 2002 07:41:50 +0000 (07:41 +0000)
runtests.sh

index 5d3af1b..6212121 100755 (executable)
@@ -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"