summaryrefslogtreecommitdiff
path: root/chromium/v8/tools/run-tests.py
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-07-17 13:57:45 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-07-19 13:44:40 +0000
commit6ec7b8da05d21a3878bd21c691b41e675d74bb1c (patch)
treeb87f250bc19413750b9bb9cdbf2da20ef5014820 /chromium/v8/tools/run-tests.py
parentec02ee4181c49b61fce1c8fb99292dbb8139cc90 (diff)
downloadqtwebengine-chromium-6ec7b8da05d21a3878bd21c691b41e675d74bb1c.tar.gz
BASELINE: Update Chromium to 60.0.3112.70
Change-Id: I9911c2280a014d4632f254857876a395d4baed2d Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/v8/tools/run-tests.py')
-rwxr-xr-xchromium/v8/tools/run-tests.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/chromium/v8/tools/run-tests.py b/chromium/v8/tools/run-tests.py
index 0b1675b75e6..1ba0380be20 100755
--- a/chromium/v8/tools/run-tests.py
+++ b/chromium/v8/tools/run-tests.py
@@ -68,8 +68,10 @@ TEST_MAP = {
"debugger",
"mjsunit",
"cctest",
+ "wasm-spec-tests",
"inspector",
"webkit",
+ "mkgrokdump",
"fuzzer",
"message",
"preparser",
@@ -81,7 +83,9 @@ TEST_MAP = {
"debugger",
"mjsunit",
"cctest",
+ "wasm-spec-tests",
"inspector",
+ "mkgrokdump",
"fuzzer",
"message",
"preparser",
@@ -265,7 +269,7 @@ def BuildOptions():
default=False, action="store_true")
result.add_option("--extra-flags",
help="Additional flags to pass to each test command",
- default="")
+ action="append", default=[])
result.add_option("--isolates", help="Whether to test isolates",
default=False, action="store_true")
result.add_option("-j", help="The number of parallel tasks to run",
@@ -419,6 +423,7 @@ def SetupEnvironment(options):
'coverage=1',
'coverage_dir=%s' % options.sancov_dir,
symbolizer,
+ "allow_user_segv_handler=1",
])
if options.cfi_vptr:
@@ -532,7 +537,7 @@ def ProcessOptions(options):
"running tests locally.")
options.no_network = True
options.command_prefix = shlex.split(options.command_prefix)
- options.extra_flags = shlex.split(options.extra_flags)
+ options.extra_flags = sum(map(shlex.split, options.extra_flags), [])
if options.gc_stress:
options.extra_flags += GC_STRESS_FLAGS
@@ -781,7 +786,7 @@ def Execute(arch, mode, args, options, suites):
# target_arch != v8_target_arch in the dumped build config.
simulator_run = not options.dont_skip_simulator_slow_tests and \
arch in ['arm64', 'arm', 'mipsel', 'mips', 'mips64', 'mips64el', \
- 'ppc', 'ppc64'] and \
+ 'ppc', 'ppc64', 's390', 's390x'] and \
ARCH_GUESS and arch != ARCH_GUESS
# Find available test suites and read test cases from them.
variables = {