aboutsummaryrefslogtreecommitdiff
path: root/tests/settings.py
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-10-10 11:49:50 -0700
committeralon@honor <none@none>2010-10-10 11:49:50 -0700
commit5a4c4614b70c0dfe7d5f19b72379b52210e4afa5 (patch)
tree61374bd571f444f7afef7c80c20b1ee0e29391fe /tests/settings.py
parentab097f0b3a1440911bfb48a0b26057176c02edfd (diff)
clean up flattener code and remove unneeded flattener definitions; 3% speedup
Diffstat (limited to 'tests/settings.py')
-rw-r--r--tests/settings.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/settings.py b/tests/settings.py
index 04a3c0f7..4702dc09 100644
--- a/tests/settings.py
+++ b/tests/settings.py
@@ -33,16 +33,10 @@ V8_ENGINE=os.path.expanduser('~/Dev/v8/d8')
#PARSER_ENGINE=SPIDERMONKEY_ENGINE
PARSER_ENGINE=V8_ENGINE
-#TODO
-#if PARSER_ENGINE == SPIDERMONKEY_ENGINE:
-# PARSER_ENGINE_OPS += ['-j', '-m']
-
-JS_ENGINE=SPIDERMONKEY_ENGINE
-#JS_ENGINE=V8_ENGINE
+#JS_ENGINE=SPIDERMONKEY_ENGINE
+JS_ENGINE=V8_ENGINE
JS_ENGINE_OPTS=[]
-if JS_ENGINE == SPIDERMONKEY_ENGINE:
- JS_ENGINE_OPTS += ['-j', '-m']
OUTPUT_TO_SCREEN = 0 # useful for debugging specific tests, or for subjectively seeing what parts are slow