HomeSort by relevance Sort by last modified time
    Searched refs:executive (Results 1 - 25 of 56) sorted by null

1 2 3

  /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...]
workspace.py 35 def __init__(self, filesystem, executive):
37 self._executive = executive # FIXME: Remove if create_zip is moved to python.
executive_mock.py 33 from webkitpy.common.system import executive namespace
63 script_error = executive.ScriptError(script_args=arg_list,
deprecated_logging_unittest.py 34 from webkitpy.common.system.executive import ScriptError
  /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.py 36 from webkitpy.common.system import executive namespace
64 def __init__(self, executive, filesystem):
65 self._executive = executive
164 except (OSError, executive.ScriptError):
config_standalone.py 47 from webkitpy.common.system import executive namespace
63 e = executive.Executive()
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...]
  /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)
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)
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,
build.py 44 self._tool.executive.run_and_throw_if_fail(self._tool.port().build_webkit_command(build_style=build_style), self._options.quiet)
preparechangelog.py 32 from webkitpy.common.system.executive import ScriptError
77 self._tool.executive.run_and_throw_if_fail(args, self._options.quiet)
preparechangelogforrevert.py 53 self._tool.executive.run_and_throw_if_fail(self._tool.port().prepare_changelog_command())
  /external/webkit/Tools/Scripts/webkitpy/common/
prettypatch.py 35 def __init__(self, executive, checkout_root):
36 self._executive = executive
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_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())
  /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/commands/
abstractsequencedcommand.py 29 from webkitpy.common.system.executive import ScriptError
  /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,

Completed in 498 milliseconds

1 2 3