Index: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py |
diff --git a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py |
index df65f7dda022ed78d4994128eee6e7a333699ae3..2aa4cbf837260fe7b789d6d401ce846263e955ad 100644 |
--- a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py |
+++ b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py |
@@ -291,11 +291,16 @@ class RunTest(unittest.TestCase, StreamTestingMixin): |
def test_keyboard_interrupt(self): |
# Note that this also tests running a test marked as SKIP if |
# you specify it explicitly. |
+ #host = MockHost() |
+ #details, _, _ = logging_run(['failures/expected/keyboard.html', '--child-processes', '1'], tests_included=True, host=host) |
+ #self.assertEqual(details.exit_code, run_webkit_tests.INTERRUPTED_EXIT_STATUS) |
Dirk Pranke
2013/08/29 17:04:26
I'm not quite sure what your intent w/ these chang
|
self.assertRaises(KeyboardInterrupt, logging_run, ['failures/expected/keyboard.html', '--child-processes', '1'], tests_included=True) |
if self.should_test_processes: |
self.assertRaises(KeyboardInterrupt, logging_run, |
['failures/expected/keyboard.html', 'passes/text.html', '--child-processes', '2', '--skipped=ignore'], tests_included=True, shared_port=False) |
+ #_, regular_output, _ = logging_run(['failures/expected/keyboard.html', 'passes/text.html', '--child-processes', '2', '--skipped=ignore'], tests_included=True, shared_port=False) |
+ #self.assertTrue(any(['Running 1 ' in line for line in regular_output.buflist])) |
def test_no_tests_found(self): |
details, err, _ = logging_run(['resources'], tests_included=True) |