From 87e2415e5a3f00987b70f1f99567123a6eeccdbf Mon Sep 17 00:00:00 2001 From: Benjamin C Meyer Date: Wed, 14 Mar 2007 21:54:33 +0100 Subject: [PATCH] output the start and end of autotest testing --- autotests/runalltests | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autotests/runalltests b/autotests/runalltests index b649fa8..bb482d8 100755 --- a/autotests/runalltests +++ b/autotests/runalltests @@ -1,4 +1,5 @@ #!/bin/sh +echo "--checking autotests--" for test in `ls -1` ; do if [ -d $test ] ; then tempfoo=`basename $0` @@ -6,6 +7,7 @@ for test in `ls -1` ; do ./$test/$test -silent > $output grep FAIL $output >> /dev/null if [ $? == 0 ] ; then + echo "autotest failure"; cat $output rm $output; exit 1 @@ -13,3 +15,4 @@ for test in `ls -1` ; do rm $output; fi done +echo "--checking autotests done--" -- 2.11.4.GIT