Searched refs:script_error (Results 1 – 11 of 11) sorted by relevance
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
D | queues.py | 147 def _log_from_script_error_for_upload(cls, script_error, output_limit=None): argument 152 output = script_error.message_with_output(output_limit=output_limit) 159 def _update_status_for_script_error(cls, tool, state, script_error, is_error=False): argument 160 message = str(script_error) 163 failure_log = cls._log_from_script_error_for_upload(script_error) 293 def _error_message_for_bug(self, status_id, script_error): argument 294 if not script_error.output: 295 return script_error.message_with_output() 297 return "%s\nFull output: %s" % (script_error.message_with_output(), results_link) 310 def command_failed(self, message, script_error, patch): argument [all …]
|
D | earlywarningsystem.py | 98 def handle_script_error(cls, tool, state, script_error): argument 99 is_svn_apply = script_error.command_name() == "svn-apply" 100 … status_id = cls._update_status_for_script_error(tool, state, script_error, is_error=is_svn_apply) 102 QueueEngine.exit_after_handled_error(script_error)
|
D | queues_unittest.py | 100 def _assert_log_message(self, script_error, log_message): argument 101 failure_log = AbstractQueue._log_from_script_error_for_upload(script_error, output_limit=10) 115 script_error = ScriptError(unicode_tor, output=unicode_tor) 117 self._assert_log_message(script_error, expected_output)
|
D | stepsequence.py | 39 def handle_script_error(cls, tool, patch, script_error): argument
|
D | sheriffbot.py | 103 def handle_script_error(cls, tool, state, script_error): argument
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
D | executive_mock.py | 63 script_error = executive.ScriptError(script_args=arg_list, 66 error_handler(script_error)
|
D | executive.py | 388 script_error = ScriptError(script_args=args, 392 (error_handler or self.default_error_handler)(script_error)
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
D | commitqueuetask.py | 41 def command_failed(self, message, script_error, patch): argument 89 …self.failure_status_id = self._delegate.command_failed(failure_message, script_error=self._script_…
|
D | commitqueuetask_unittest.py | 58 def command_failed(self, failure_message, script_error, patch): argument 60 failure_message, script_error, patch.id()))
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | base.py | 729 def _handle_wdiff_error(script_error): argument 731 if script_error.exit_code != 1: 732 raise script_error
|
D | chromium.py | 120 def error_handler(script_error): argument 121 local_error.exit_code = script_error.exit_code
|