Title: [174076] trunk/Tools
Revision
174076
Author
roger_f...@apple.com
Date
2014-09-29 11:42:14 -0700 (Mon, 29 Sep 2014)

Log Message

[Windows] Reduce number of processes used by NRWT on Windows to 1.
* Scripts/webkitpy/port/win.py:
(WinPort.default_child_processes):
Reduce number of processes to 1 so we can get a good baseline for what failures
we should be expecting to see from the Windows bots.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (174075 => 174076)


--- trunk/Tools/ChangeLog	2014-09-29 18:28:34 UTC (rev 174075)
+++ trunk/Tools/ChangeLog	2014-09-29 18:42:14 UTC (rev 174076)
@@ -1,3 +1,12 @@
+2014-09-29  Roger Fong  <roger_f...@apple.com>
+
+        [Windows] Reduce number of processes used by NRWT on Windows to 1.
+
+        * Scripts/webkitpy/port/win.py:
+        (WinPort.default_child_processes):
+        Reduce number of processes to 1 so we can get a good baseline for what failures
+        we should be expecting to see from the Windows bots.
+
 2014-09-29  Darin Adler  <da...@apple.com>
 
         Tweak and tighten SVG font converter

Modified: trunk/Tools/Scripts/webkitpy/port/win.py (174075 => 174076)


--- trunk/Tools/Scripts/webkitpy/port/win.py	2014-09-29 18:28:34 UTC (rev 174075)
+++ trunk/Tools/Scripts/webkitpy/port/win.py	2014-09-29 18:42:14 UTC (rev 174076)
@@ -94,7 +94,7 @@
         return 'win'
 
     def default_child_processes(self):
-        return 2
+        return 1
 
     def show_results_html_file(self, results_filename):
         self._run_script('run-safari', [abspath_to_uri(SystemHost().platform, results_filename)])
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to