Title: [150211] trunk/Tools
- Revision
- 150211
- Author
- [email protected]
- Date
- 2013-05-16 16:38:13 -0700 (Thu, 16 May 2013)
Log Message
Fix the hard-coded names of EWS bots that run tests.
* Scripts/webkitpy/tool/commands/queues.py:
(CommitQueue.did_pass_testing_ews):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (150210 => 150211)
--- trunk/Tools/ChangeLog 2013-05-16 21:32:31 UTC (rev 150210)
+++ trunk/Tools/ChangeLog 2013-05-16 23:38:13 UTC (rev 150211)
@@ -1,3 +1,10 @@
+2013-05-16 Ryosuke Niwa <[email protected]>
+
+ Fix the hard-coded names of EWS bots that run tests.
+
+ * Scripts/webkitpy/tool/commands/queues.py:
+ (CommitQueue.did_pass_testing_ews):
+
2013-05-16 Gustavo Noronha Silva <[email protected]>
[GTK] Build Xvfb with jhbuild
Modified: trunk/Tools/Scripts/webkitpy/tool/commands/queues.py (150210 => 150211)
--- trunk/Tools/Scripts/webkitpy/tool/commands/queues.py 2013-05-16 21:32:31 UTC (rev 150210)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/queues.py 2013-05-16 23:38:13 UTC (rev 150211)
@@ -381,8 +381,8 @@
def did_pass_testing_ews(self, patch):
# Only Mac and Mac WK2 run tests
# FIXME: We shouldn't have to hard-code it here.
- status = self._tool.status_server.patch_status("mac", patch.id())
- return status == self._pass_status
+ patch_status = self._tool.status_server.patch_status
+ return patch_status("mac-ews", patch.id()) == self._pass_status or patch_status("mac-wk2-ews", patch.id()) == self._pass_status
# StepSequenceErrorHandler methods
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes