From: Kern Sibbald Date: Fri, 2 Nov 2012 22:13:20 +0000 (+0100) Subject: Attempt to indicate timed out tests X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d2605963fcda043d073a57a195a5b76f8ee043e4;p=bacula%2Fbacula Attempt to indicate timed out tests --- diff --git a/regress/run b/regress/run index f7f7d4d7a7..f9cd745628 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