Title: [174120] trunk/Tools
Revision
174120
Author
[email protected]
Date
2014-09-30 13:36:54 -0700 (Tue, 30 Sep 2014)

Log Message

[Windows] Back to 2 child processes for NRWT on Windows.
* Scripts/webkitpy/port/win.py:
(WinPort.default_child_processes):
Changing the number of processes to 1 did not have an effect on the layout test results.
It does introduce an issue with one of the workers hanging indefinitely and causing the 
layout tests to timeout as a whole occasionally, but we should just fix that.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (174119 => 174120)


--- trunk/Tools/ChangeLog	2014-09-30 20:32:50 UTC (rev 174119)
+++ trunk/Tools/ChangeLog	2014-09-30 20:36:54 UTC (rev 174120)
@@ -1,3 +1,13 @@
+2014-09-30  Roger Fong  <[email protected]>
+
+        [Windows] Back to 2 child processes for NRWT on Windows.
+
+        * Scripts/webkitpy/port/win.py:
+        (WinPort.default_child_processes):
+        Changing the number of processes to 1 did not have an effect on the layout test results. 
+        It does introduce an issue with one of the workers hanging indefinitely and causing the 
+        layout tests to timeout as a whole occasionally, but we should just fix that.
+
 2014-09-30  Alexey Proskuryakov  <[email protected]>
 
         Remove an accidentally committed line..

Modified: trunk/Tools/Scripts/webkitpy/port/win.py (174119 => 174120)


--- trunk/Tools/Scripts/webkitpy/port/win.py	2014-09-30 20:32:50 UTC (rev 174119)
+++ trunk/Tools/Scripts/webkitpy/port/win.py	2014-09-30 20:36:54 UTC (rev 174120)
@@ -94,7 +94,7 @@
         return 'win'
 
     def default_child_processes(self):
-        return 1
+        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

Reply via email to