| Index: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| index d5a059be956e4d231714091670361e37ebd449af..6a9f57aa0a69830f007f57258c0a4be873b9278a 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| @@ -31,7 +31,6 @@
|
| import logging
|
| import optparse
|
| import os
|
| -import signal
|
| import sys
|
| import traceback
|
|
|
| @@ -45,9 +44,6 @@ from webkitpy.layout_tests.views import printing
|
| _log = logging.getLogger(__name__)
|
|
|
|
|
| -# This mirrors what the shell normally does.
|
| -INTERRUPTED_EXIT_STATUS = signal.SIGINT + 128
|
| -
|
| # This is a randomly chosen exit code that can be tested against to
|
| # indicate that an unexpected exception occurred.
|
| EXCEPTIONAL_EXIT_STATUS = 254
|
| @@ -83,8 +79,6 @@ def main(argv, stdout, stderr):
|
| bot_printer.print_results(run_details)
|
|
|
| return run_details.exit_code
|
| - except KeyboardInterrupt:
|
| - return INTERRUPTED_EXIT_STATUS
|
| except BaseException as e:
|
| if isinstance(e, Exception):
|
| print >> stderr, '\n%s raised: %s' % (e.__class__.__name__, str(e))
|
|
|