Home | History | Annotate | Download | only in commands

Lines Matching refs:tool

47 from webkitpy.tool.bot.botinfo import BotInfo
48 from webkitpy.tool.bot.commitqueuetask import CommitQueueTask, CommitQueueTaskDelegate
49 from webkitpy.tool.bot.feeders import CommitQueueFeeder, EWSFeeder
50 from webkitpy.tool.bot.queueengine import QueueEngine, QueueEngineDelegate
51 from webkitpy.tool.bot.flakytestreporter import FlakyTestReporter
52 from webkitpy.tool.commands.stepsequence import StepSequenceErrorHandler
53 from webkitpy.tool.steps.runtests import RunTests
54 from webkitpy.tool.multicommandtool import Command, TryAgain
141 def execute(self, options, args, tool, engine=QueueEngine):
143 self._tool = tool # FIXME: This code is wrong too! Command.bind_to_tool handles this!
159 def _update_status_for_script_error(cls, tool, state, script_error, is_error=False):
164 return tool.status_server.update_status(cls.name, message, state["patch"], failure_log)
315 # tool.filesystem.read_text_file. They have different error handling at the moment.
371 def handle_script_error(cls, tool, state, script_error):
378 def handle_checkout_needs_update(cls, tool, state, options, error):
380 tool.status_server.update_status(cls.name, message, state["patch"])
431 def handle_script_error(cls, tool, state, script_error):
449 def handle_script_error(cls, tool, state, script_error):
451 status_id = cls._update_status_for_script_error(tool, state, script_error, is_error=is_svn_apply)
455 tool.bugs.post_comment_to_bug(state["patch"].bug_id(), message, cc=cls.watchers)