Title: [129561] trunk/Tools
- Revision
- 129561
- Author
- [email protected]
- Date
- 2012-09-25 15:23:55 -0700 (Tue, 25 Sep 2012)
Log Message
Python tests fail on Windows bots when running with more than one child process. Temporarily use only one child process until the problem can be fixed.
https://bugs.webkit.org/show_bug.cgi?id=97465
Reviewed by Tim Horton.
* BuildSlaveSupport/build.webkit.org-config/master.cfg:
(RunPythonTests.start):
Modified Paths
Diff
Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (129560 => 129561)
--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg 2012-09-25 22:16:30 UTC (rev 129560)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg 2012-09-25 22:23:55 UTC (rev 129561)
@@ -470,6 +470,10 @@
# helps and does not significantly prolong the cycle time.
if platform == 'gtk':
self.setCommand(self.command + ['--child-processes', '1'])
+ # Python tests fail on windows bots when running more than one child process
+ # https://bugs.webkit.org/show_bug.cgi?id=97465
+ if platform == 'win':
+ self.setCommand(self.command + ['--child-processes', '1'])
return shell.Test.start(self)
def countFailures(self, cmd):
Modified: trunk/Tools/ChangeLog (129560 => 129561)
--- trunk/Tools/ChangeLog 2012-09-25 22:16:30 UTC (rev 129560)
+++ trunk/Tools/ChangeLog 2012-09-25 22:23:55 UTC (rev 129561)
@@ -1,3 +1,13 @@
+2012-09-25 Lucas Forschler <[email protected]>
+
+ Python tests fail on Windows bots when running with more than one child process. Temporarily use only one child process until the problem can be fixed.
+ https://bugs.webkit.org/show_bug.cgi?id=97465
+
+ Reviewed by Tim Horton.
+
+ * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+ (RunPythonTests.start):
+
2012-09-25 Mike West <[email protected]>
Unreviewed. Adding myself as a committer.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes