diff options
author | alon@honor <none@none> | 2010-10-10 10:41:51 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-10-10 10:41:51 -0700 |
commit | ab097f0b3a1440911bfb48a0b26057176c02edfd (patch) | |
tree | 1f7429296e590f0c8239b982e434c306dfb3e3da | |
parent | a75307b84dc14ba8508eac5a64e798d0db7672a6 (diff) |
spidermonkey opts
-rw-r--r-- | tests/settings.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/settings.py b/tests/settings.py index ba6ef812..04a3c0f7 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -33,10 +33,16 @@ 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_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 |