summaryrefslogtreecommitdiff
path: root/chromium/v8/tools
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-08-08 17:47:06 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-08-09 11:07:23 +0000
commita3ee7849e3b0ad3d5f9595fa1cfd694c22dcee2a (patch)
treedab5d7f392b3b7d1198c0584ae0a1e0e8511967b /chromium/v8/tools
parent9a05d0e4db172168e429f30bc8ed62b695006490 (diff)
downloadqtwebengine-chromium-a3ee7849e3b0ad3d5f9595fa1cfd694c22dcee2a.tar.gz
BASELINE: Update Chromium to 60.0.3112.96
Change-Id: I8fa4120b6b8153b5be2520e57cf76c8d210bc2b5 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/v8/tools')
-rwxr-xr-xchromium/v8/tools/run-tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/v8/tools/run-tests.py b/chromium/v8/tools/run-tests.py
index 1ba0380be20..7a9e90cd5e2 100755
--- a/chromium/v8/tools/run-tests.py
+++ b/chromium/v8/tools/run-tests.py
@@ -787,7 +787,7 @@ def Execute(arch, mode, args, options, suites):
simulator_run = not options.dont_skip_simulator_slow_tests and \
arch in ['arm64', 'arm', 'mipsel', 'mips', 'mips64', 'mips64el', \
'ppc', 'ppc64', 's390', 's390x'] and \
- ARCH_GUESS and arch != ARCH_GUESS
+ bool(ARCH_GUESS) and arch != ARCH_GUESS
# Find available test suites and read test cases from them.
variables = {
"arch": arch,