aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-12-04 10:38:17 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-12-04 10:38:17 -0800
commit0dd6e0f630529d6a56439e19ae1738c82a117393 (patch)
tree412ab28776f571fb9337b409d94d751b4454c232
parent1e163c7b4516dfaec6970ac1aa23caea4d451e38 (diff)
tiny cleanup for benchmark code
-rw-r--r--tests/runner.py6
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']]