Searched refs:shell (Results 201 - 225 of 765) sorted by last modified time

1234567891011>>

/external/chromium_org/v8/test/fuzz-natives/
H A Dtestcfg.py18 shell = os.path.abspath(os.path.join(context.shell_dir, self.shell()))
20 shell += ".exe"
23 [shell, "--allow-natives-syntax", "-e",
/external/chromium_org/v8/test/mozilla/
H A Dtestcfg.py46 shell.js
94 result += [os.path.join(self.root, "mozilla-shell-emulation.js")]
100 "shell.js")
152 code = subprocess.call(command, shell=True)
/external/chromium_org/v8/test/preparser/
H A Dtestcfg.py41 def shell(self): member in class:PreparserTestSuite
/external/chromium_org/v8/tools/
H A Dandroid-ll-prof.sh55 adb shell "cd /data/local/tmp/v8;\
H A Dandroid-run.py31 # using 'adb shell' command. Unfortunately, 'adb shell' always
36 # Then we parse the output of 'adb shell' and look for that error string.
54 shell=True,
102 "adb shell 'sh %s';" % android_script_file +
103 "adb shell 'rm %s'" % android_script_file)
H A Dandroid-sync.sh70 local ANDROID_HASH=$(adb shell "md5 \"$ANDROID_V8/$FILE\"")
H A Ddisasm.py76 shell=True,
H A Dgenerate-builtins-tests.py115 "%s %s" % (options.d8, options.script), shell=True).strip()
H A Dgrokdump.py3096 if options.shell:
3127 parser.add_option("-s", "--shell", dest="shell", action="store_true",
3128 help="start an interactive inspector shell")
3132 help="run an interactive inspector shell command and exit")
H A Dll_prof.py54 # --ll-prof shell flag enables the right V8 logs
739 shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
H A Dnacl-run.py49 shell=True,
H A Dpresubmit.py302 stdout=PIPE, cwd=path, shell=True)
H A Drun-tests.py165 help="Prepended to each shell command used to run a test",
231 result.add_option("--shell", help="DEPRECATED! use --shell-dir", default="")
232 result.add_option("--shell-dir", help="Directory containing executables",
351 if options.shell:
352 print "Warning: --shell is deprecated, use --shell-dir instead."
353 options.shell_dir = os.path.dirname(options.shell)
H A Dtest-server.py59 code = subprocess.call(cmd, shell=True)
81 code = subprocess.call("which pip > /dev/null", shell=True)
83 apt_get_code = subprocess.call("which apt-get > /dev/null", shell=True)
100 shell=True)
/external/chromium_org/v8/tools/push-to-trunk/
H A Dcommon_includes.py194 return subprocess.check_output(cmd_line, shell=True, cwd=cwd)
196 return subprocess.check_call(cmd_line, shell=True, cwd=cwd)
459 "that it's sane, do so in another shell, but remember to not "
/external/chromium_org/v8/tools/testrunner/local/
H A Dcommands.py79 shell=utils.IsWindows(),
H A Dexecution.py251 shell = test.suite.shell()
252 if shell == "d8":
255 shell += ".exe"
257 [os.path.abspath(os.path.join(self.context.shell_dir, shell))] +
H A Dtestsuite.py62 def shell(self): member in class:TestSuite
228 shell = os.path.abspath(os.path.join(context.shell_dir, self.shell()))
230 shell += ".exe"
232 [shell, "--gtest_list_tests"] +
256 def shell(self): member in class:GoogleTestSuite
/external/chromium_org/v8/tools/testrunner/network/
H A Ddistro.py30 def __init__(self, shell):
31 self.shell = shell
57 shell = s.shell()
58 if not shell in shells:
59 shells[shell] = Shell(shell)
60 shells[shell].AddSuite(s)
64 # Sort tests within each shell, longes
[all...]
H A Dnetwork_execution.py72 shell=True).strip()
78 (workspace, self.base_rev), shell=True).strip()
80 "cd %s; git diff %s" % (workspace, self.base_rev), shell=True)
118 shell = s.shell()
119 if shell not in self.binaries:
120 path = os.path.join(self.context.shell_dir, shell)
124 shell=True)
139 self.binaries[shell] = binary
/external/chromium_org/v8/tools/testrunner/objects/
H A Dpeer.py47 def AddTests(self, shell):
48 """Adds tests from |shell| to this peer.
50 Stops when self.needed_work reaches zero, or when all of shell's tests
53 if shell.shell not in self.shells:
54 self.shells.add(shell.shell)
55 while len(shell.tests) > 0 and self.needed_work > 0:
56 t = shell.tests.pop()
59 shell
[all...]
H A Dworkpacket.py50 for shell in self.peer.shells:
51 prefetched_binary = binaries_dict[shell]
52 binaries.append({"name": shell,
/external/chromium_org/v8/tools/testrunner/server/
H A Dsignatures.py43 shell=True)
58 shell=True)
H A Dwork_handler.py110 base_revision = subprocess.check_output(get_hash_cmd, shell=True)
115 base_revision = subprocess.check_output(get_hash_cmd, shell=True)
142 return subprocess.call(cmd, shell=True)
/external/chromium_org/v8/
H A DMakefile29 # Variable default definitions. Override them by exporting them in your shell.
283 BUILDTYPE=$(shell echo $(subst .,,$(suffix $@)) | \
286 builddir="$(shell pwd)/$(OUTDIR)/$@"
291 builddir="$(shell pwd)/$(OUTDIR)/$@"
316 --arch=$(shell echo $(DEFAULT_ARCHES) | sed -e 's/ /,/g') \
345 $(shell pwd) $(ANDROID_V8)
402 $(eval CXX_TARGET_ARCH:=$(shell $(CXX) -v 2>&1 | grep ^Target: | \
406 PYTHONPATH="$(shell pwd)/tools/generate_shim_headers:$(shell pwd)/build:$(PYTHONPATH):$(shell pw
[all...]

Completed in 8402 milliseconds

1234567891011>>