summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/driver/testlib.py4
-rw-r--r--testsuite/timeout/timeout.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py
index 5a587a7264..ee6f631cbe 100644
--- a/testsuite/driver/testlib.py
+++ b/testsuite/driver/testlib.py
@@ -1798,6 +1798,10 @@ def rawSystemWithTimeout(cmd_and_args):
if r == 98:
# The python timeout program uses 98 to signal that ^C was pressed
stopNow()
+ if r == 99 and getTestOpts().exit_code != 99:
+ # Only print a message when timeout killed the process unexpectedly.
+ cmd = cmd_and_args[-1]
+ if_verbose(1, 'Timeout happened...killed process "{}"...\n'.format(cmd))
return r
# cmd is a complex command in Bourne-shell syntax
diff --git a/testsuite/timeout/timeout.py b/testsuite/timeout/timeout.py
index 1016e2db33..51fb63c179 100644
--- a/testsuite/timeout/timeout.py
+++ b/testsuite/timeout/timeout.py
@@ -35,8 +35,6 @@ try:
else:
# parent
def handler(signum, frame):
- msg = 'Timeout happened...killing process %s...\n' % cmd
- sys.stderr.write(msg)
killProcess(pid)
sys.exit(99)
old = signal.signal(signal.SIGALRM, handler)