Home | History | Annotate | Download | only in bot

Lines Matching full:patch

38     def command_passed(self, message, patch):
41 def command_failed(self, message, script_error, patch):
44 def refetch_patch(self, patch):
50 def archive_last_layout_test_results(self, patch):
54 def report_flaky_tests(self, patch, flaky_tests, results_archive):
59 def __init__(self, delegate, patch):
61 self._patch = patch
85 self._delegate.command_passed(success_message, patch=self._patch)
89 self.failure_status_id = self._delegate.command_failed(failure_message, script_error=self._script_error, patch=self._patch)
114 "Applied patch",
115 "Patch does not apply")
124 "Built patch",
125 "Patch does not build")
134 "Able to build without patch",
135 "Unable to build without patch")
147 "Patch does not pass tests")
161 "Able to pass tests without patch",
162 "Unable to pass tests without patch (tree is red?)")
177 "Landed patch",
178 "Unable to land patch")
228 def results_archive_from_patch_test_run(self, patch):
229 assert(self._patch.id() == patch.id()) # CommitQueueTask is not currently re-useable.
254 # Make sure the patch is still valid before landing (e.g., make sure
255 # no one has set commit-queue- since we started working on the patch.)