/external/webkit/Tools/Scripts/webkitpy/common/system/ |
executive_unittest.py | 36 from webkitpy.common.system.executive import Executive, run_command, ScriptError 77 file_interpreter = Executive.interpreter_for_script(temp_name, fs) 98 run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True) 102 executive = Executive() 103 self.assertRaises(AssertionError, executive.run_command, "echo") 104 self.assertRaises(AssertionError, executive.run_command, u"echo") 105 executive.run_command(echo.command_arguments('foo')) 106 executive.run_command(tuple(echo.command_arguments('foo')) [all...] |
executive_mock.py | 33 from webkitpy.common.system import executive namespace 63 script_error = executive.ScriptError(script_args=arg_list,
|
workspace.py | 35 def __init__(self, filesystem, executive): 37 self._executive = executive # FIXME: Remove if create_zip is moved to python.
|
/external/webkit/Tools/Scripts/webkitpy/common/ |
prettypatch_unittest.py | 32 from webkitpy.common.system.executive import Executive 38 executive = Executive() 40 result = executive.run_command(['ruby', '--version']) 72 pretty_patch = PrettyPatch(Executive(), self._webkit_root()) 82 pretty_patch = PrettyPatch(Executive(), self._webkit_root())
|
host.py | 35 from webkitpy.common.system import executive, filesystem, platforminfo, user, workspace namespace 43 self.executive = executive.Executive() 46 self.workspace = workspace.Workspace(self.filesystem, self.executive)
|
prettypatch.py | 35 def __init__(self, executive, checkout_root): 36 self._executive = executive
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
chromium_linux_unittest.py | 48 executive = None 50 executive = executive_mock.MockExecutive2(file_output) 53 executive=executive, filesystem=filesystem) 90 executive = executive_mock.MockExecutive2('win32') 92 executive=executive) 98 executive = executive_mock.MockExecutive2(exception=AssertionError) 100 filesystem=filesystem, executive=executive) [all...] |
config_unittest.py | 33 from webkitpy.common.system import executive namespace 46 return executive.Executive().run_command(arg_list) 148 e = executive.Executive() 173 c = self.make_config(exception=executive.ScriptError()) 180 c = config.Config(executive.Executive(), filesystem.FileSystem()) 186 c = config.Config(executive.Executive(), filesystem.FileSystem() [all...] |
config_standalone.py | 47 from webkitpy.common.system import executive namespace 63 e = executive.Executive()
|
config.py | 36 from webkitpy.common.system import executive namespace 64 def __init__(self, executive, filesystem): 65 self._executive = executive 164 except (OSError, executive.ScriptError):
|
websocket_server.py | 48 from webkitpy.common.system.executive import Executive 197 # FIXME: We should direct this call through Executive for testing. 212 # FIXME: We should use a non-static Executive for easier 214 Executive().kill_process(self._process.pid) 246 # FIXME: We should use a non-static Executive for easier testing. 247 Executive().kill_process(pid)
|
chromium_mac.py | 39 from webkitpy.common.system.executive import Executive 131 self._executive.run_command([self._path_to_wdiff()], error_handler=Executive.ignore_error)
|
http_lock.py | 38 from webkitpy.common.system.executive import Executive 59 self._executive = Executive()
|
/external/webkit/Tools/Scripts/webkitpy/test/ |
cat_unittest.py | 28 from webkitpy.common.system import executive, outputcapture namespace 51 output = executive.Executive().run_command(cat.command_arguments(), input=input)
|
echo_unittest.py | 27 from webkitpy.common.system import executive, outputcapture namespace 63 output = executive.Executive().run_command(echo.command_arguments('foo', 'bar', 'baz'))
|
/external/webkit/Tools/Scripts/webkitpy/common/net/ |
credentials.py | 37 from webkitpy.common.system.executive import Executive, ScriptError 52 def __init__(self, host, git_prefix=None, executive=None, cwd=os.getcwd(), 56 self.executive = executive or Executive() 104 return self.executive.run_command(security_command)
|
credentials_unittest.py | 35 from webkitpy.common.system.executive import Executive 107 credentials = Credentials("example.com", executive=executive_mock) 123 credentials = Credentials("example.com", executive=executive_mock)
|
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
runtests.py | 51 self._tool.executive.run_and_throw_if_fail(self._tool.port().run_python_unittests_command()) 53 self._tool.executive.run_and_throw_if_fail(self._tool.port().run_perl_unittests_command()) 58 self._tool.executive.run_and_throw_if_fail(javascriptcore_tests_command, quiet=True) 70 self._tool.executive.run_and_throw_if_fail(args)
|
checkstyle.py | 31 from webkitpy.common.system.executive import ScriptError 59 self._tool.executive.run_and_throw_if_fail(self._tool.port().check_webkit_style_command() + args)
|
confirmdiff.py | 35 from webkitpy.common.system.executive import ScriptError 53 pretty_patch = PrettyPatch(self._tool.executive,
|
preparechangelog.py | 32 from webkitpy.common.system.executive import ScriptError 77 self._tool.executive.run_and_throw_if_fail(args, self._options.quiet)
|
preparechangelogfordepsroll.py | 37 self._tool.executive.run_and_throw_if_fail(self._tool.port().prepare_changelog_command())
|
update.py | 46 self._tool.executive.run_and_throw_if_fail(self._tool.port().update_webkit_command(), quiet=self._options.quiet)
|
/external/webkit/Tools/Scripts/webkitpy/common/config/ |
ports.py | 35 from webkitpy.common.system.executive import Executive 50 interpreter = Executive.interpreter_for_script(script_path) 75 args = '--makeargs="-j%s"' % Executive().cpu_count()
|
/external/webkit/Tools/Scripts/ |
print-vse-failure-logs | 40 from webkitpy.common.system.executive import Executive 46 self._executive = Executive()
|