From: Kern Sibbald Date: Fri, 2 Nov 2012 22:13:20 +0000 (+0100) Subject: Attempt to indicate timed out tests X-Git-Tag: Release-7.0.0~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4be18589cea4267ad26922b188c24058e837e522;p=thirdparty%2Fbacula.git Attempt to indicate timed out tests --- diff --git a/regress/run b/regress/run index f7f7d4d7a..f9cd74562 100755 --- a/regress/run +++ b/regress/run @@ -8,7 +8,15 @@ # within the timeout period (900 seconds). # if [ -f bin/timelimit ] ; then - WARNTIME=900 KILLTIME=5 bin/timelimit $* + WARNTIME=900 KILLTIME=50 bin/timelimit $* + if [ $? .ne. 0 ] ; then + echo " " + echo "=== Test $* timed out ===" + echo " " + echo " " >>test.out + echo "=== Test $* timed out ===" >>test.out + echo " " >>test.out + fi else nice $* fi