From a2ebdf6f2ee81369240570f8089cae63561ecdb3 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 5 Feb 2019 07:41:09 +1100 Subject: [PATCH] Tools: autotest: Indicate we have handled an alarm --- Tools/autotest/autotest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Tools/autotest/autotest.py b/Tools/autotest/autotest.py index ab1b6dbd55..ce43b56bab 100755 --- a/Tools/autotest/autotest.py +++ b/Tools/autotest/autotest.py @@ -223,6 +223,7 @@ def alarm_handler(signum, frame): """Handle test timeout.""" global results, opts try: + print("Alarm handler called") results.add('TIMEOUT', 'FAILED', opts.timeout)