summaryrefslogtreecommitdiff
path: root/testsuite/timeout
diff options
context:
space:
mode:
authorThomas Miedema <thomasmiedema@gmail.com>2015-09-03 16:13:42 +0200
committerThomas Miedema <thomasmiedema@gmail.com>2015-09-04 00:06:17 +0200
commite1293bbfb1fa1fdeb56446a7b957d6f628042e71 (patch)
tree39d874bd11c690a126174382ddfa39bfbd2cb488 /testsuite/timeout
parentb639c977fda47dd0088b0cf1c970018f032188a2 (diff)
downloadhaskell-e1293bbfb1fa1fdeb56446a7b957d6f628042e71.tar.gz
Testsuite: only print msg when timeout kills process unexpectedly
Differential Revision: https://phabricator.haskell.org/D1207
Diffstat (limited to 'testsuite/timeout')
-rw-r--r--testsuite/timeout/timeout.py2
1 files changed, 0 insertions, 2 deletions
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)