| 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 4b9a8663c3ef7d320cecfd7752f2c357e214a419..cfb3e6f614570a17d86ac397b9514118e8e548a8 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py
|
| @@ -794,6 +794,13 @@ class RunTest(unittest.TestCase, StreamTestingMixin):
|
| self.assertTrue('text.html passed' in logging_stream.getvalue())
|
| self.assertTrue('image.html passed' in logging_stream.getvalue())
|
|
|
| + def disabled_test_driver_logging(self):
|
| + # FIXME: Figure out how to either use a mock-test port to
|
| + # get output or mack mock ports work again.
|
| + host = Host()
|
| + _, err, _ = logging_run(['--platform', 'mock-win', '--driver-logging', 'fast/harness/results.html'],
|
| + tests_included=True, host=host)
|
| + self.assertTrue('OUT:' in err.getvalue())
|
|
|
| class EndToEndTest(unittest.TestCase):
|
| def test_reftest_with_two_notrefs(self):
|
|
|