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

  /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)
  /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.py 101 # New code should use Executive.run_command directly instead
102 return Executive().run_command(*args, **kwargs)
105 class Executive(object):
307 # updated to use an Executive object.
  /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/layout_tests/port/
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...]
http_lock.py 38 from webkitpy.common.system.executive import Executive
59 self._executive = Executive()
config_standalone.py 47 from webkitpy.common.system import executive namespace
63 e = executive.Executive()
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)
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)
server_process.py 42 from webkitpy.common.system.executive import Executive
54 def __init__(self, port_obj, name, cmd, env=None, executive=Executive()):
60 self._executive = executive
base_unittest.py 34 from webkitpy.common.system.executive import Executive, ScriptError
76 port = base.Port(executive=executive_mock.MockExecutive2(exception=OSError))
89 port = base.Port(executive=executive_mock.MockExecutive2(exception=ScriptError))
99 executive = Executive()
104 wdiff_path = executive.run_command(["which", "wdiff"]).rstrip()
base.py 53 from webkitpy.common.system.executive import Executive, ScriptError
87 executive=None,
106 self._executive = executive or Executive()
    [all...]
  /external/webkit/Tools/Scripts/
print-vse-failure-logs 40 from webkitpy.common.system.executive import Executive
46 self._executive = Executive()
  /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/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/webkitpy/layout_tests/
deduplicate_tests.py 41 from webkitpy.common.system import executive namespace
110 git_output = executive.Executive().run_command(cmd,
deduplicate_tests_unittest.py 37 class Executive(object):
54 deduplicate_tests.executive = MockExecutive
rebaseline_chromium_webkit_tests_unittest.py 39 from webkitpy.common.system.executive import Executive, ScriptError
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
scm.py 40 from webkitpy.common.system.executive import Executive, run_command, ScriptError
133 Executive.default_error_handler(error)
150 def __init__(self, cwd, executive=None):
154 self._executive = executive or Executive()
185 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()
339 def __init__(self, cwd, patch_directories, executive=None):
340 SCM.__init__(self, cwd, executive)
    [all...]
api.py 39 from webkitpy.common.system.executive import Executive, run_command, ScriptError
scm_unittest.py 51 from webkitpy.common.system.executive import Executive, run_command, ScriptError
58 # FIXME: This should be unified into one of the executive.py commands!
264 self.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))
    [all...]

Completed in 1136 milliseconds