From 4be18589cea4267ad26922b188c24058e837e522 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Fri, 2 Nov 2012 23:13:20 +0100 Subject: [PATCH] Attempt to indicate timed out tests --- regress/run | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 -- 2.39.2