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

  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queuestest.py 51 def assert_outputs(self, func, func_name, args, expected_stdout, expected_stderr, expected_exceptions):
53 if expected_exceptions and func_name in expected_exceptions:
54 exception = expected_exceptions[func_name]
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):
88 self.assert_outputs(queue.queue_log_path, "queue_log_path", [], expected_stdout, expected_stderr, expected_exceptions)
89 self.assert_outputs(queue.work_item_log_path, "work_item_log_path", [work_item], expected_stdout, expected_stderr, expected_exceptions)
90 self.assert_outputs(queue.begin_work_queue, "begin_work_queue", [], expected_stdout, expected_stderr, expected_exceptions)
91 self.assert_outputs(queue.should_continue_work_queue, "should_continue_work_queue", [], expected_stdout, expected_stderr, expected_exceptions)
92 self.assert_outputs(queue.next_work_item, "next_work_item", [], expected_stdout, expected_stderr, expected_exceptions)
    [all...]
earlywarningsystem_unittest.py 98 expected_exceptions = {
101 self.assert_queue_outputs(ews, expected_stderr=self._default_expected_stderr(ews), expected_exceptions=expected_exceptions)
108 expected_exceptions = {"handle_script_error": SystemExit}
109 self.assert_queue_outputs(ews, expected_stderr=expected_stderr, expected_exceptions=expected_exceptions)
queues_unittest.py 434 expected_exceptions = {
437 self.assert_queue_outputs(StyleQueue(), expected_stderr=expected_stderr, expected_exceptions=expected_exceptions)

Completed in 499 milliseconds