Title: [238950] trunk/Tools
Revision
238950
Author
jbed...@apple.com
Date
2018-12-06 22:18:33 -0800 (Thu, 06 Dec 2018)

Log Message

Consecutive DumpRenderTree crashes are happening again on WinCairo BuildBots since r238903
https://bugs.webkit.org/show_bug.cgi?id=192486

Unreviewed infrastructure fix.

WinCairo bots define WEBKIT_TEST_CHILD_PROCESSES to run less processes due to RAM restrictions.


* Scripts/webkitpy/layout_tests/run_webkit_tests.py:
(_set_up_derived_options):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (238949 => 238950)


--- trunk/Tools/ChangeLog	2018-12-07 05:51:30 UTC (rev 238949)
+++ trunk/Tools/ChangeLog	2018-12-07 06:18:33 UTC (rev 238950)
@@ -1,3 +1,15 @@
+2018-12-06  Jonathan Bedard  <jbed...@apple.com>
+
+        Consecutive DumpRenderTree crashes are happening again on WinCairo BuildBots since r238903
+        https://bugs.webkit.org/show_bug.cgi?id=192486
+
+        Unreviewed infrastructure fix.
+
+        WinCairo bots define WEBKIT_TEST_CHILD_PROCESSES to run less processes due to RAM restrictions.
+
+        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
+        (_set_up_derived_options):
+
 2018-12-06  David Kilzer  <ddkil...@apple.com>
 
         Injected bundle for WebKitTestRunner leaks WKTypeRef objects

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py (238949 => 238950)


--- trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py	2018-12-07 05:51:30 UTC (rev 238949)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py	2018-12-07 06:18:33 UTC (rev 238950)
@@ -370,6 +370,9 @@
 
 def _set_up_derived_options(port, options):
     """Sets the options values that depend on other options values."""
+    if not options.child_processes:
+        options.child_processes = os.environ.get('WEBKIT_TEST_CHILD_PROCESSES')
+
     if not options.configuration:
         options.configuration = port.default_configuration()
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to