Searched defs:run_command (Results 1 - 4 of 4) sorted by relevance

/external/webkit/WebKitTools/Scripts/webkitpy/
H A Dexecutive_unittest.py31 from webkitpy.executive import Executive, run_command namespace
37 run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True)
H A Dexecutive.py74 def run_command(*args, **kwargs): function
76 # New code should use Executive.run_command directly instead
77 return Executive().run_command(*args, **kwargs)
138 def run_command(self, member in class:Executive
H A Dscm.py38 from webkitpy.executive import Executive, run_command, ScriptError namespace
107 print run_command(self.status_command(), error_handler=Executive.ignore_error)
134 run_command(args, input=curl_process.stdout)
138 for line in run_command(status_command).splitlines():
276 info_output = run_command(svn_info_args).rstrip()
304 self.cached_version = run_command(['svn', '--version', '--quiet'])
309 return run_command(['svn', 'diff']) == ""
312 run_command(['svn', 'revert', '-R', '.'])
332 return run_command(self.script_path("svn-create-patch"), cwd=self.checkout_root, return_stderr=False)
335 return run_command(['sv
[all...]
H A Dscm_unittest.py41 from webkitpy.executive import Executive, run_command, ScriptError namespace
77 run_command(['svn', 'add', 'test_file'])
78 run_command(['svn', 'commit', '--quiet', '--message', 'initial commit'])
83 run_command(['svn', 'commit', '--quiet', '--message', 'second commit'])
88 run_command(['svn', 'commit', '--quiet', '--message', 'third commit'])
93 run_command(['svn', 'commit', '--quiet', '--message', 'fourth commit'])
96 run_command(['svn', 'update'])
105 run_command(['svnadmin', 'create', '--pre-1.5-compatible', test_object.svn_repo_path])
109 run_command(['svn', 'checkout', '--quiet', test_object.svn_repo_url, test_object.svn_checkout_path])
115 run_command(['r
[all...]

Completed in 55 milliseconds