Index: tools/run-tests.py |
diff --git a/tools/run-tests.py b/tools/run-tests.py |
index ae56e756a00c193316cf4f06e68b5c1ca6f5f10a..94bcd700de3d4296dd619790da2add96a4868614 100755 |
--- a/tools/run-tests.py |
+++ b/tools/run-tests.py |
@@ -112,11 +112,12 @@ TEST_MAP = { |
TIMEOUT_DEFAULT = 60 |
-VARIANTS = ["default", "stress", "turbofan"] |
+# TODO(machenbach): Add ignition_staging variant. |
+VARIANTS = ["default", "turbofan"] |
MORE_VARIANTS = [ |
"ignition", |
- "nocrankshaft", |
+ "stress", |
"turbofan_opt", |
] |
@@ -128,7 +129,7 @@ VARIANT_ALIASES = { |
# Additional variants, run on all bots. |
"more": MORE_VARIANTS, |
# Additional variants, run on a subset of bots. |
- "extra": [], |
+ "extra": ["nocrankshaft"], |
} |
DEBUG_FLAGS = ["--nohard-abort", "--nodead-code-elimination", |