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

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

Issue 2228853002: [test] Fully deprecate NO_IGNITION directive. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-test-variants-4
Patch Set: Created 4 years, 4 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/testrunner/local/statusfile.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 c24dcf8d43c609873e5b315cc80de33d9b8cf7dd..11d220742779f09650a1f140157679e86fedfa01 100644
--- a/tools/testrunner/local/testsuite.py
+++ b/tools/testrunner/local/testsuite.py
@@ -38,7 +38,6 @@ from variants import ALL_VARIANTS, ALL_VARIANT_FLAGS, FAST_VARIANT_FLAGS
FAST_VARIANTS = set(["default", "turbofan"])
STANDARD_VARIANT = set(["default"])
-IGNITION_VARIANT = set(["ignition"])
class VariantGenerator(object):
@@ -55,8 +54,6 @@ class VariantGenerator(object):
return self.standard_variant
if statusfile.OnlyFastVariants(testcase.outcomes):
result = self.fast_variants
- if statusfile.NoIgnitionVariant(testcase.outcomes):
- result = result - IGNITION_VARIANT
return result
def GetFlagSets(self, testcase, variant):
« no previous file with comments | « tools/testrunner/local/statusfile.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698