diff options
author | Alon Zakai <azakai@mozilla.com> | 2011-01-14 22:44:52 -0800 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2011-01-14 22:44:52 -0800 |
commit | 9d209878f9819ffd1aa92c7306123392609db845 (patch) | |
tree | 2a6093cc6ce7fce34ea2a0473a639388b0a37d4e /tests/settings.py | |
parent | 60122ddc2e157b1cf117e6e098a2fc336c92d5a7 (diff) |
refactor shared components of python tools, and add emmaken.py
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 a52d6c6f..c2607a49 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -1,10 +1,3 @@ -# XXX: Aside from these settings, you should create ~/.emscripten, and fill it with -# something like this: -# -# JS_ENGINE=[os.path.expanduser('~/Dev/tracemonkey/js/src/js'), '-m'] -# JS_ENGINE_PARAMS=[] -# - TEMP_DIR='/dev/shm' LLVM_ROOT=os.path.expanduser('~/Dev/llvm-2.8/cbuild/Release/bin') # Might not need 'Release' @@ -43,6 +36,10 @@ V8_ENGINE = [os.path.expanduser('~/Dev/v8/d8')] #COMPILER_ENGINE=SPIDERMONKEY_ENGINE COMPILER_ENGINE=V8_ENGINE +JS_ENGINE=V8_ENGINE +JS_ENGINE_PARAMS = ['--'] # For V8 +JS_ENGINE_PARAMS = [] # For SpiderMonkey + OUTPUT_TO_SCREEN = 0 # useful for debugging specific tests, or for subjectively seeing what parts are slow TIMEOUT = None @@ -50,6 +47,4 @@ TIMEOUT = None # Tools CLOSURE_COMPILER = os.path.expanduser('~/Dev/closure-compiler/compiler.jar') -DEMANGLER = path_from_root(['third_party', 'demangler.py']) -NAMESPACER = path_from_root(['tools', 'namespacer.py']) |