Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(402)

Unified Diff: tools/run-tests.py

Issue 2961873002: [test] Fix test status file simulator_run not evaluate to boolean error and clean up equal operator (Closed)
Patch Set: Drop unnecessary comparison operators Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/webkit/webkit.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index 5185417da742263de3f24576e9a3a56ed2719ec5..103c40dd3fe9f40b8867466ff572e8b7c838d6e9 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -784,7 +784,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,
« no previous file with comments | « test/webkit/webkit.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698