diff --git a/tools/testrunner/local/variants.py b/tools/testrunner/local/variants.py index 034cba37bb..ee5955fdae 100644 --- a/tools/testrunner/local/variants.py +++ b/tools/testrunner/local/variants.py @@ -6,6 +6,7 @@ ALL_VARIANT_FLAGS = { "default": [[]], "future": [["--future"]], + "liftoff": [["--liftoff"]], "stress": [["--stress-opt", "--always-opt"]], # TODO(6792): Write protected code has been temporary added to the below # variant until the feature has been enabled (or staged) by default. @@ -22,6 +23,7 @@ ALL_VARIANT_FLAGS = { FAST_VARIANT_FLAGS = { "default": [[]], "future": [["--future"]], + "liftoff": [["--liftoff"]], "stress": [["--stress-opt"]], # TODO(6792): Write protected code has been temporary added to the below # variant until the feature has been enabled (or staged) by default. @@ -34,5 +36,6 @@ FAST_VARIANT_FLAGS = { "wasm_traps": [["--wasm_trap_handler", "--invoke-weak-callbacks"]], } -ALL_VARIANTS = set(["default", "future", "stress", "stress_incremental_marking", - "nooptimization", "stress_background_compile", "wasm_traps"]) +ALL_VARIANTS = set(["default", "future", "liftoff", "stress", + "stress_incremental_marking", "nooptimization", + "stress_background_compile", "wasm_traps"]) diff --git a/tools/testrunner/standard_runner.py b/tools/testrunner/standard_runner.py index f8d39028b6..13efd2ff55 100755 --- a/tools/testrunner/standard_runner.py +++ b/tools/testrunner/standard_runner.py @@ -48,7 +48,7 @@ VARIANT_ALIASES = { # Additional variants, run on all bots. "more": MORE_VARIANTS, # Additional variants, run on a subset of bots. - "extra": ["future"], + "extra": ["future", "liftoff"], } GC_STRESS_FLAGS = ["--gc-interval=500", "--stress-compaction",