* Scripts/webkitpy/tool/commands/queues.py:
(CommitQueue.did_pass_testing_ews):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@150211
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-05-16 Ryosuke Niwa <rniwa@webkit.org>
+
+ 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 <gustavo.noronha@collabora.com>
[GTK] Build Xvfb with jhbuild
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