| Index: tools/testrunner/local/testsuite.py
|
| diff --git a/tools/testrunner/local/testsuite.py b/tools/testrunner/local/testsuite.py
|
| index e0fff0d11a3d176b3faaac43819e827c552fea0b..42ced0e3a5a1204ffe97e152fd4721d77f29e409 100644
|
| --- a/tools/testrunner/local/testsuite.py
|
| +++ b/tools/testrunner/local/testsuite.py
|
| @@ -40,6 +40,7 @@ ALL_VARIANT_FLAGS = {
|
| "stress": [["--stress-opt", "--always-opt"]],
|
| "turbofan": [["--turbo", "--always-opt"]],
|
| "nocrankshaft": [["--nocrankshaft"]],
|
| + "ignition": [["--ignition", "--ignition-filter=*"]],
|
| }
|
|
|
| # FAST_VARIANTS implies no --always-opt.
|
| @@ -48,9 +49,11 @@ FAST_VARIANT_FLAGS = {
|
| "stress": [["--stress-opt"]],
|
| "turbofan": [["--turbo"]],
|
| "nocrankshaft": [["--nocrankshaft"]],
|
| + "ignition": [["--ignition", "--ignition-filter=*"]],
|
| }
|
|
|
| -ALL_VARIANTS = set(["default", "stress", "turbofan", "nocrankshaft"])
|
| +ALL_VARIANTS = set(["default", "stress", "turbofan", "nocrankshaft",
|
| + "ignition"])
|
| FAST_VARIANTS = set(["default", "turbofan"])
|
| STANDARD_VARIANT = set(["default"])
|
|
|
|
|