Index: tools/run-tests.py |
diff --git a/tools/run-tests.py b/tools/run-tests.py |
index e15cb526fbf730ff82626c14d05447d063c1b781..8f6855ac38b76c124d56b3bd1fb092560ea79b05 100755 |
--- a/tools/run-tests.py |
+++ b/tools/run-tests.py |
@@ -62,9 +62,10 @@ VARIANT_FLAGS = { |
"default": [], |
"stress": ["--stress-opt", "--always-opt"], |
"turbofan": ["--turbo-filter=*", "--always-opt"], |
+ "turbofan-generic": ["--turbo-filter=*", "--always-opt", "--nocontext-specialization"], |
sigurds
2014/08/22 14:01:33
Adds a variant with context specialization disable
|
"nocrankshaft": ["--nocrankshaft"]} |
-VARIANTS = ["default", "stress", "turbofan", "nocrankshaft"] |
+VARIANTS = ["default", "stress", "turbofan", "turbofan-generic", "nocrankshaft"] |
MODE_FLAGS = { |
"debug" : ["--nohard-abort", "--nodead-code-elimination", |