diff options
author | alon@honor <none@none> | 2010-10-10 22:52:54 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-10-10 22:52:54 -0700 |
commit | 425295d786880c7741a9eab9768d5aa32a7c3faf (patch) | |
tree | 1b81f92fb3dc0fdf40dadd57bbbfdf3d67a2aa45 /tests/settings.py | |
parent | 5a4c4614b70c0dfe7d5f19b72379b52210e4afa5 (diff) |
typed arrays support; function __index__ing ; 36% speedup
Diffstat (limited to 'tests/settings.py')
-rw-r--r-- | tests/settings.py | 13 |
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 |