diff options
author | Alon Zakai <azakai@mozilla.com> | 2010-11-05 20:48:19 -0700 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2010-11-05 20:48:19 -0700 |
commit | 906a8745c2a70d3bf797bce28c5c0ba055f8b98a (patch) | |
tree | 98df65205fea7e448f12df4afb5674dea8af5936 /tests/settings.py | |
parent | 093bfe5c5ac4c9713250dc7da75e5c20022bbe01 (diff) |
framework for integration tests
Diffstat (limited to 'tests/settings.py')
-rw-r--r-- | tests/settings.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/settings.py b/tests/settings.py index e2d99e32..16c71400 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -1,3 +1,10 @@ +# 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' @@ -37,5 +44,9 @@ OUTPUT_TO_SCREEN = 0 # useful for debugging specific tests, or for subjectively 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']) |