Home
last modified time | relevance | path

Searched refs:ignore_error (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/common/system/
Dexecutive.py208 self.run_command(command, error_handler=self.ignore_error)
293 self.run_command(command, error_handler=self.ignore_error)
304 self.run_command(command, error_handler=self.ignore_error)
314 def ignore_error(error): member in Executive
Dexecutive_unittest.py98 … run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True)
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
Dscm.py185 print self.run(self.status_command(), error_handler=Executive.ignore_error)
330 …find_output = self.run(find_args, cwd=home_directory, error_handler=Executive.ignore_error).rstrip…
643 …v-parse', '--is-inside-work-tree'], cwd=path, error_handler=Executive.ignore_error).rstrip() == "t…
664 error_handler=Executive.ignore_error).rstrip('\n')
825 self.run(['git', 'revert', '--no-commit', git_commit], error_handler=Executive.ignore_error)
Dscm_unittest.py264 …lf.assertRaises(OSError, run_command, command_does_not_exist, error_handler=Executive.ignore_error)
269 self.assertTrue(run_command(command_returns_non_zero, error_handler=Executive.ignore_error))
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
Dchromium_mac.py131 … self._executive.run_command([self._path_to_wdiff()], error_handler=Executive.ignore_error)