diff options
-rw-r--r-- | tests/runner.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index da924c29..1881471c 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -4690,8 +4690,10 @@ else: pass Building.COMPILER = CLANG - JS_ENGINE = SPIDERMONKEY_ENGINE - #JS_ENGINE = V8_ENGINE + + # Pick the JS engine to benchmark + JS_ENGINE = JS_ENGINES[1] + print 'Benchmarking JS engine:', JS_ENGINE Building.COMPILER_TEST_OPTS = [] POST_OPTIMIZATIONS = [['js-optimizer', 'loopOptimizer'], 'eliminator', 'closure', ['js-optimizer', 'unGlobalize', 'removeAssignsToUndefined', 'simplifyExpressions']] |