HomeSort by relevance Sort by last modified time
    Searched refs:work_item (Results 1 - 6 of 6) sorted by null

  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
queueengine.py 48 def work_item_log_path(self, work_item):
60 def should_proceed_with_work_item(self, work_item):
64 def process_work_item(self, work_item):
67 def handle_unexpected_error(self, work_item, message):
96 work_item = self._delegate.next_work_item()
97 if not work_item:
100 if not self._delegate.should_proceed_with_work_item(work_item):
106 self._open_work_log(work_item)
108 if not self._delegate.process_work_item(work_item):
117 self._delegate.handle_unexpected_error(work_item, message
    [all...]
queueengine_unittest.py 67 def work_item_log_path(self, work_item):
69 return os.path.join(self._test.temp_dir, "work_log_path", "%s.log" % work_item)
83 return "work_item"
85 def should_proceed_with_work_item(self, work_item):
87 self._test.assertEquals(work_item, "work_item")
91 def process_work_item(self, work_item):
93 self._test.assertEquals(work_item, "work_item")
96 def handle_unexpected_error(self, work_item, message)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queuestest.py 67 def assert_queue_outputs(self, queue, args=None, work_item=None, expected_stdout=None, expected_stderr=None, expected_exceptions=None, options=None, tool=None):
82 if not work_item:
83 work_item = self.mock_work_item
89 self.assert_outputs(queue.work_item_log_path, "work_item_log_path", [work_item], expected_stdout, expected_stderr, expected_exceptions)
93 self.assert_outputs(queue.should_proceed_with_work_item, "should_proceed_with_work_item", [work_item], expected_stdout, expected_stderr, expected_exceptions)
94 self.assert_outputs(queue.process_work_item, "process_work_item", [work_item], expected_stdout, expected_stderr, expected_exceptions)
95 self.assert_outputs(queue.handle_unexpected_error, "handle_unexpected_error", [work_item, "Mock error message"], expected_stdout, expected_stderr, expected_exceptions)
sheriffbot_unittest.py 57 self.assert_queue_outputs(SheriffBot(), work_item=mock_work_item, expected_stderr=expected_stderr)
queues.py 108 def work_item_log_path(self, work_item):
130 def should_proceed_with_work_item(self, work_item):
133 def process_work_item(self, work_item):
136 def handle_unexpected_error(self, work_item, message):
187 def should_proceed_with_work_item(self, work_item):
190 def process_work_item(self, work_item):
196 def work_item_log_path(self, work_item):
199 def handle_unexpected_error(self, work_item, message):
queues_unittest.py 305 self.assert_queue_outputs(CommitQueue(), tool=tool, work_item=rollout_patch, expected_stderr=expected_stderr)

Completed in 604 milliseconds