/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
run-bindings-tests | 32 from webkitpy.common.system import executive namespace 49 return BindingsTests(reset_results, test_python, verbose, executive.Executive()).main()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
executive_unittest.py | 48 from webkitpy.common.system.executive import Executive, ScriptError 87 file_interpreter = Executive.interpreter_for_script(temp_name, fs) 108 Executive().run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True) 112 executive = Executive() 113 self.assertRaises(AssertionError, executive.run_command, "echo") 114 self.assertRaises(AssertionError, executive.run_command, u"echo") 115 executive.run_command(command_line('echo', 'foo') [all...] |
systemhost.py | 33 from webkitpy.common.system import environment, executive, filesystem, platforminfo, user, workspace namespace 38 self.executive = executive.Executive() 41 self.platform = platforminfo.PlatformInfo(sys, platform, self.executive) 42 self.workspace = workspace.Workspace(self.filesystem, self.executive)
|
user.py | 39 from webkitpy.common.system.executive import Executive 61 self._platforminfo = platforminfo or PlatformInfo(sys, platform, Executive())
|
platforminfo_unittest.py | 33 from webkitpy.common.system.executive import Executive 70 def make_info(self, sys_module=None, platform_module=None, executive=None): 71 return PlatformInfo(sys_module or fake_sys(), platform_module or fake_platform(), executive or fake_executive()) 77 info = PlatformInfo(sys, platform, Executive()) 116 info = self.make_info(fake_sys('cygwin'), executive=fake_executive('6.1.7600')) 152 self.assertRaises(AssertionError, self.make_info, fake_sys('win32'), executive=fake_executive('5.0.1234')) 153 self.assertEqual(self.make_info(fake_sys('cygwin'), executive=fake_executive('6.2.1234')).os_version, 'future') 154 self.assertEqual(self.make_info(fake_sys('cygwin'), executive=fake_executive('6.1.7600')).os_version, '7sp0') 155 self.assertEqual(self.make_info(fake_sys('cygwin'), executive=fake_executive('6.0.1234')).os_version, 'vista' [all...] |
executive.py | 86 class Executive(object): 172 interpreter = Executive.interpreter_for_script(script_path, fs) 349 # updated to use an Executive object.
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ |
patchreader.py | 35 from webkitpy.common.system.executive import Executive 73 detection = SCMDetector(fs, Executive()).detect_scm_system(cwd)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/ |
detection.py | 33 from webkitpy.common.system.executive import Executive 42 def __init__(self, filesystem, executive): 44 self._executive = executive 71 if SVN.in_working_directory(absolute_path, executive=self._executive): 72 return SVN(cwd=absolute_path, patch_directories=patch_directories, filesystem=self._filesystem, executive=self._executive) 74 if Git.in_working_directory(absolute_path, executive=self._executive): 75 return Git(cwd=absolute_path, filesystem=self._filesystem, executive=self._executive) 83 return SCMDetector(FileSystem(), Executive()).detect_scm_system(path, patch_directories)
|
svn.py | 40 from webkitpy.common.system.executive import Executive, ScriptError 64 def in_working_directory(cls, path, executive=None): 70 executive = executive or Executive() 72 exit_code = executive.run_command(svn_info_args, cwd=path, return_exit_code=True) 83 # FIXME: This method should use a passed in executive or be made an instance method and use self._executive. 84 info_output = Executive().run_command(svn_info_args, cwd=path).rstrip() 180 info_output = Executive().run_command([self.executable_name, 'log', '-r', revision, '--xml', repository_root], cwd=path).r (…) [all...] |
scm.py | 36 from webkitpy.common.system.executive import Executive, ScriptError 44 def __init__(self, cwd, executive=None, filesystem=None): 46 self._executive = executive or Executive() 83 def in_working_directory(cls, path, executive=None):
|
git.py | 37 from webkitpy.common.system.executive import Executive, ScriptError 69 def in_working_directory(cls, path, executive=None): 71 executive = executive or Executive() 72 return executive.run_command([cls.executable_name, 'rev-parse', '--is-inside-work-tree'], cwd=path, error_handler=Executive.ignore_error).rstrip() == "true" 85 def read_git_config(cls, key, cwd=None, executive=None): 89 # FIXME: This should use an Executive [all...] |
scm_unittest.py | 35 from webkitpy.common.system.executive import Executive, ScriptError 62 self.executive = None 67 self.executive = Executive() 94 return self.executive.run_command(*args, **kwargs) 97 self.executive.run_and_throw_if_fail(args, quiet=True, **kwargs) 680 scm = Git(cwd=".", executive=MockExecutive(), filesystem=MockFileSystem())
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
python.py | 32 from webkitpy.common.system.executive import Executive 76 executive = Executive() 83 return executive.run_command([sys.executable, wkf.path_from_depot_tools_base('pylint.py'), 89 error_handler=executive.ignore_error)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/ |
main_unittest.py | 29 from webkitpy.common.system.executive import Executive 109 executive = Executive() 112 proc = executive.popen([sys.executable, filesystem.join(script_dir, 'test-webkitpy'), '-c', STUBS_CLASS + '.test_empty'], 113 stdout=executive.PIPE, stderr=executive.PIPE)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/ |
update_webgl_conformance_tests.py | 32 from webkitpy.common.system.executive import Executive 95 detector = scm.SCMDetector(FileSystem(), Executive())
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
bisect_test_ordering.py | 36 from webkitpy.common.system.executive import Executive 54 self.executive = Executive() 150 output = self.executive.popen([path_to_run_webkit_tests, '--child-processes', '1', '--order', 'none', '--no-retry', '--no-show-results', '--verbose'] + extra_args + tests, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
layout_tests_mover.py | 54 from webkitpy.common.system.executive import Executive
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
run.py | 61 handle() instantiates a run.Executive object, passing it a reference to the 63 Executive instance. The Executive methods have access to the reference and 258 executive = Executive(self) 259 self.register("exec", executive) 292 class Executive(object):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
run.py | 61 handle() instantiates a run.Executive object, passing it a reference to the 63 Executive instance. The Executive methods have access to the reference and 258 executive = Executive(self) 259 self.register("exec", executive) 292 class Executive(object):
|
/external/chromium_org/build/android/pylib/utils/ |
flakiness_dashboard_results_uploader.py | 29 from webkitpy.common.system import executive, filesystem namespace 44 self._executive = executive.Executive()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
base_unittest.py | 35 from webkitpy.common.system.executive import Executive, ScriptError 50 def make_port(self, executive=None, with_tests=False, port_name=None, **kwargs): 52 if executive: 53 host.executive = executive 91 port = self.make_port(executive=executive_mock.MockExecutive2(exception=OSError)) 104 port = self.make_port(executive=executive_mock.MockExecutive2(exception=ScriptError)) 331 port = self.make_port(executive=MockExecutive2()) 340 port = self.make_port(executive=MockExecutive2(exit_code=1) [all...] |