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

Unified Diff: tools/testrunner/local/testsuite.py

Issue 1056423004: [mjsunit] Add custom tests based on SQLite 3.8.9. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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 | « tools/presubmit.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testrunner/local/testsuite.py
diff --git a/tools/testrunner/local/testsuite.py b/tools/testrunner/local/testsuite.py
index a152b6dd7e5dcbf6b440c26788cacaac5cb4dbbf..7fea13a4ae3683a19fadab9475ecde9621852ac4 100644
--- a/tools/testrunner/local/testsuite.py
+++ b/tools/testrunner/local/testsuite.py
@@ -93,7 +93,10 @@ class TestSuite(object):
if testcase.outcomes and statusfile.OnlyStandardVariant(testcase.outcomes):
return [[]]
if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes):
- return filter(lambda flags: flags in FAST_VARIANT_FLAGS, default_flags)
+ # FAST_VARIANTS implies no --always-opt.
+ return [ filter(lambda flag: flag != "--always-opt", f)
+ for f in filter(lambda flags: flags in FAST_VARIANT_FLAGS,
+ default_flags) ]
return default_flags
def DownloadData(self):
« no previous file with comments | « tools/presubmit.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698