Title: [174026] trunk/Tools
- Revision
- 174026
- Author
- [email protected]
- Date
- 2014-09-26 15:54:07 -0700 (Fri, 26 Sep 2014)
Log Message
[Windows] Decrease default number of child processes used by Windows.
* Scripts/webkitpy/port/win.py:
(WinPort.default_child_processes):
Having too many seems to cause many tests to crash or timeout.
We may even need to make it have only 1 child process if we’re still seeing problems after this.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (174025 => 174026)
--- trunk/Tools/ChangeLog 2014-09-26 22:53:20 UTC (rev 174025)
+++ trunk/Tools/ChangeLog 2014-09-26 22:54:07 UTC (rev 174026)
@@ -1,3 +1,12 @@
+2014-09-26 Roger Fong <[email protected]>
+
+ [Windows] Decrease default number of child processes used by Windows.
+
+ * Scripts/webkitpy/port/win.py:
+ (WinPort.default_child_processes):
+ Having too many seems to cause many tests to crash or timeout.
+ We may even need to make it have only 1 child process if we’re still seeing problems after this.
+
2014-09-26 Alexey Proskuryakov <[email protected]>
Mac EWS bots do not keep logs as promised
Modified: trunk/Tools/Scripts/webkitpy/port/win.py (174025 => 174026)
--- trunk/Tools/Scripts/webkitpy/port/win.py 2014-09-26 22:53:20 UTC (rev 174025)
+++ trunk/Tools/Scripts/webkitpy/port/win.py 2014-09-26 22:54:07 UTC (rev 174026)
@@ -94,7 +94,7 @@
return 'win'
def default_child_processes(self):
- return self._executive.cpu_count() / 2
+ return 2
def show_results_html_file(self, results_filename):
self._run_script('run-safari', [abspath_to_uri(SystemHost().platform, results_filename)])
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes