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

1 2

  /external/webkit/WebKitTools/Scripts/webkitpy/
webkitport_unittest.py 32 from webkitpy.executive import Executive
49 self.assertEquals(GtkPort.build_webkit_command(), [WebKitPort.script_path("build-webkit"), "--gtk", '--makeargs="-j%s"' % Executive.cpu_count()])
50 self.assertEquals(GtkPort.build_webkit_command(build_style="debug"), [WebKitPort.script_path("build-webkit"), "--debug", "--gtk", '--makeargs="-j%s"' % Executive.cpu_count()])
56 self.assertEquals(QtPort.build_webkit_command(), [WebKitPort.script_path("build-webkit"), "--qt", '--makeargs="-j%s"' % Executive.cpu_count()])
57 self.assertEquals(QtPort.build_webkit_command(build_style="debug"), [WebKitPort.script_path("build-webkit"), "--debug", "--qt", '--makeargs="-j%s"' % Executive.cpu_count()])
executive_unittest.py 31 from webkitpy.executive import Executive, run_command
37 run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True)
credentials.py 37 from webkitpy.executive import Executive, ScriptError
45 def __init__(self, host, git_prefix=None, executive=None, cwd=os.getcwd()):
48 self.executive = executive or Executive()
58 return self.executive.run_command(
60 error_handler=Executive.ignore_error).rstrip('\n')
93 return self.executive.run_command(security_command)
credentials_unittest.py 33 from webkitpy.executive import Executive
90 credentials = Credentials("example.com", executive=executive_mock)
106 credentials = Credentials("example.com", executive=executive_mock)
108 executive_mock.run_command.assert_called_with(["git", "config", "--get", "foo"], error_handler=Executive.ignore_error)
110 credentials = Credentials("example.com", git_prefix="test_prefix", executive=executive_mock)
112 executive_mock.run_command.assert_called_with(["git", "config", "--get", "test_prefix.foo"], error_handler=Executive.ignore_error)
executive.py 76 # New code should use Executive.run_command directly instead
77 return Executive().run_command(*args, **kwargs)
80 class Executive(object):
126 # updated to use an Executive object.
webkitport.py 34 from webkitpy.executive import Executive
118 command.append('--makeargs="-j%s"' % Executive.cpu_count())
142 command.append('--makeargs="-j%s"' % Executive.cpu_count())
webkit_logging_unittest.py 35 from webkitpy.executive import ScriptError
stepsequence.py 31 from webkitpy.executive import ScriptError
scm.py 38 from webkitpy.executive import Executive, run_command, ScriptError
90 Executive.default_error_handler(error)
107 print run_command(self.status_command(), error_handler=Executive.ignore_error)
372 return run_command(['git', 'rev-parse', '--is-inside-work-tree'], cwd=path, error_handler=Executive.ignore_error).rstrip() == "true"
442 run_command(['git', 'revert', '--no-commit', git_commit], error_handler=Executive.ignore_error)
scm_unittest.py 41 from webkitpy.executive import Executive, run_command, ScriptError
48 # FIXME: This should be unified into one of the executive.py commands!
151 self.assertRaises(OSError, run_command, command_does_not_exist, error_handler=Executive.ignore_error)
156 self.assertTrue(run_command(command_returns_non_zero, error_handler=Executive.ignore_error))
queueengine.py 37 from webkitpy.executive import ScriptError
queueengine_unittest.py 35 from webkitpy.executive import ScriptError
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
runtests.py 52 self._tool.executive.run_and_throw_if_fail(self.port().run_python_unittests_command())
54 self._tool.executive.run_and_throw_if_fail(self.port().run_perl_unittests_command())
56 self._tool.executive.run_and_throw_if_fail(self.port().run_javascriptcore_tests_command(), quiet=True)
65 self._tool.executive.run_and_throw_if_fail(args)
preparechangelog.py 31 from webkitpy.executive import ScriptError
56 self._tool.executive.run_and_throw_if_fail(args, self._options.quiet)
update.py 46 self._tool.executive.run_and_throw_if_fail(self.port().update_webkit_command(), quiet=True)
abstractstep.py 42 self._tool.executive.run_and_throw_if_fail(port.script_path(script_name), quiet)
build.py 44 self._tool.executive.run_and_throw_if_fail(self.port().build_webkit_command(build_style=build_style), self._options.quiet)
checkstyle.py 31 from webkitpy.executive import ScriptError
  /external/webkit/WebKitTools/Scripts/
webkit-patch 43 from webkitpy.executive import Executive
61 self.executive = Executive()
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
queues_unittest.py 62 tool.executive.run_and_throw_if_fail.assert_called_with(expected_run_args)
queues.py 39 from webkitpy.executive import ScriptError
117 self.tool.executive.run_and_throw_if_fail(webkit_patch_args)
early_warning_system.py 34 from webkitpy.executive import ScriptError
download.py 41 from webkitpy.executive import ScriptError
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
mac.py 47 from webkitpy import executive namespace
183 self._cached_build_root = executive.run_command(["webkit-build-directory", "--base"]).rstrip()
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
i2o-dev.h 267 /* Executive event indicitors */

Completed in 276 milliseconds

1 2