Title: [130559] trunk/Tools
Revision
130559
Author
[email protected]
Date
2012-10-05 15:08:29 -0700 (Fri, 05 Oct 2012)

Log Message

Tests in webkitpy involving child processes are flaky. 
Skipping run_webkit_tests_integrationtest.py.
https://bugs.webkit.org/show_bug.cgi?id=98559

Reviewed by Dirk Pranke.

* Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
(MainTest.test_verbose_in_child_processes):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (130558 => 130559)


--- trunk/Tools/ChangeLog	2012-10-05 22:05:55 UTC (rev 130558)
+++ trunk/Tools/ChangeLog	2012-10-05 22:08:29 UTC (rev 130559)
@@ -1,3 +1,14 @@
+2012-10-05  Roger Fong  <[email protected]>
+
+        Tests in webkitpy involving child processes are flaky. 
+        Skipping run_webkit_tests_integrationtest.py.
+        https://bugs.webkit.org/show_bug.cgi?id=98559
+
+        Reviewed by Dirk Pranke.
+
+        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
+        (MainTest.test_verbose_in_child_processes):
+
 2012-10-05  Zan Dobersek  <[email protected]>
 
         [Gtk] fast/xsl/xslt-missing-namespace-in-xslt.xml is failing on the 64-bit Debug builder

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py (130558 => 130559)


--- trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py	2012-10-05 22:05:55 UTC (rev 130558)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py	2012-10-05 22:08:29 UTC (rev 130559)
@@ -926,6 +926,11 @@
         # child process (e.g., on win32) and we need to make sure that works and we still
         # see the verbose log output. However, we can't use logging_run() because using
         # outputcapture to capture stdout and stderr latter results in a nonpicklable host.
+
+        # Test is flaky on Windows: https://bugs.webkit.org/show_bug.cgi?id=98559
+        if not self.should_test_processes:
+            return
+
         options, parsed_args = parse_args(['--verbose', '--fully-parallel', '--child-processes', '2', 'passes/text.html', 'passes/image.html'], tests_included=True, print_nothing=False)
         host = MockHost()
         port_obj = host.port_factory.get(port_name=options.platform, options=options)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to