aboutsummaryrefslogtreecommitdiff
path: root/tests/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/settings.py')
-rw-r--r--tests/settings.py13
1 files changed, 4 insertions, 9 deletions
diff --git a/tests/settings.py b/tests/settings.py
index 4702dc09..9452fa81 100644
--- a/tests/settings.py
+++ b/tests/settings.py
@@ -25,18 +25,13 @@ LLVM_DIS_OPTS = []
if '2.8' in LLVM_ROOT:
LLVM_DIS_OPTS += ['-show-annotations']
-SPIDERMONKEY_ENGINE=os.path.expanduser('~/Dev/mozilla-central/js/src/js')
-V8_ENGINE=os.path.expanduser('~/Dev/v8/d8')
+SPIDERMONKEY_ENGINE = [os.path.expanduser('~/Dev/mozilla-central/js/src/js'), '-m'] # No |-j| due to Mozilla bug XXX
+V8_ENGINE = [os.path.expanduser('~/Dev/v8/d8')]
# XXX Warning: Compiling the 'sauer' test in SpiderMonkey can lead to an extreme amount of memory being
# used, see Mozilla bug 593659. Possibly also some other tests as well.
-#PARSER_ENGINE=SPIDERMONKEY_ENGINE
-PARSER_ENGINE=V8_ENGINE
-
-#JS_ENGINE=SPIDERMONKEY_ENGINE
-JS_ENGINE=V8_ENGINE
-
-JS_ENGINE_OPTS=[]
+#COMPILER_ENGINE=SPIDERMONKEY_ENGINE
+COMPILER_ENGINE=V8_ENGINE
OUTPUT_TO_SCREEN = 0 # useful for debugging specific tests, or for subjectively seeing what parts are slow