From b090dde2fbb184d1b92721a0d153e6387ff98cfc Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Fri, 11 Feb 2011 14:31:07 -0500 Subject: [PATCH] Add a "BOOM" string to the timeout message, otherwise the failure is hard to find. --- collects/tests/run-automated-tests.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/tests/run-automated-tests.rkt b/collects/tests/run-automated-tests.rkt index 0f5eb93ee9..3b8abb9419 100755 --- a/collects/tests/run-automated-tests.rkt +++ b/collects/tests/run-automated-tests.rkt @@ -75,10 +75,10 @@ (echo "Timeout!") (break-thread th) (sleep 60) - (echo " A minute has passed, killing the test thread!") + (echo "BOOM! A minute has passed, killing the test thread!") (kill-thread th) (sleep 60) - (echo " Another minute passed, aborting!") + (echo "Another minute passed, aborting!") (abort 1 "Goodbye."))))) (parameterize* ([exit-handler (lambda (n) (abort n "exit with error code ~a" n))]