Title: [90205] trunk/Tools
Revision
90205
Author
[email protected]
Date
2011-06-30 22:47:29 -0700 (Thu, 30 Jun 2011)

Log Message

2011-06-30  Adam Barth  <[email protected]>

        The win32 implementation of fork is sad about forking test-webkitpy.
        Hopefully this will heal the bot.

        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (90204 => 90205)


--- trunk/Tools/ChangeLog	2011-07-01 05:44:59 UTC (rev 90204)
+++ trunk/Tools/ChangeLog	2011-07-01 05:47:29 UTC (rev 90205)
@@ -1,3 +1,10 @@
+2011-06-30  Adam Barth  <[email protected]>
+
+        The win32 implementation of fork is sad about forking test-webkitpy.
+        Hopefully this will heal the bot.
+
+        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
+
 2011-06-30  Eric Seidel  <[email protected]>
 
         Reviewed by Adam Barth.

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py (90204 => 90205)


--- trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py	2011-07-01 05:44:59 UTC (rev 90204)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py	2011-07-01 05:47:29 UTC (rev 90205)
@@ -203,16 +203,25 @@
             self.assertTrue(len(batch) <= 2, '%s had too many tests' % ', '.join(batch))
 
     def test_child_process_1(self):
+        # This test seems to fail on win32.
+        if sys.platform == 'win32':
+            return
         _, _, regular_output, _ = logging_run(
              ['--print', 'config', '--worker-model', 'processes', '--child-processes', '1'])
         self.assertTrue(any(['Running 1 ' in line for line in regular_output.get()]))
 
     def test_child_processes_2(self):
+        # This test seems to fail on win32.
+        if sys.platform == 'win32':
+            return
         _, _, regular_output, _ = logging_run(
              ['--print', 'config', '--worker-model', 'processes', '--child-processes', '2'])
         self.assertTrue(any(['Running 2 ' in line for line in regular_output.get()]))
 
     def test_child_processes_min(self):
+        # This test seems to fail on win32.
+        if sys.platform == 'win32':
+            return
         _, _, regular_output, _ = logging_run(
              ['--print', 'config', '--worker-model', 'processes', '--child-processes', '2', 'passes'],
              tests_included=True)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to