diff options
author | alon@honor <none@none> | 2010-09-04 21:32:35 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-09-04 21:32:35 -0700 |
commit | c3d043f32921b28dee20c5b68e0c1424d266b2a3 (patch) | |
tree | af24f8a6910ccde42f2bb089538a5aefe3f277ce /tests/settings.py | |
parent | f44ff320263db6a465a09798168b4220e7333f83 (diff) |
clean up settings and add code snippets file
--HG--
rename : tests/settings.cfg => tests/settings.py
Diffstat (limited to 'tests/settings.py')
-rw-r--r-- | tests/settings.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/settings.py b/tests/settings.py new file mode 100644 index 00000000..34f90c87 --- /dev/null +++ b/tests/settings.py @@ -0,0 +1,16 @@ +DEBUG=False +TEMP_DIR='/dev/shm' +LLVM_GCC=os.path.expanduser('~/Dev/llvm/llvm-gcc-27/cbuild/bin/bin/llvm-g++') +LLVM_DIS=os.path.expanduser('~/Dev/llvm/llvm-27/cbuild/bin/llvm-dis') +PY_PARSER=path_from_root(['llvm-parser', 'parser.py']) +SPIDERMONKEY_SHELL=os.path.expanduser(os.path.expanduser('~/Dev/tracemonkey/js/src/js')) +V8_ENGINE=os.path.expanduser('~/Dev/v8/d8') # Note: Fails in test_strings etc. due to commandline arguments parsing +JS_ENGINE=SPIDERMONKEY_SHELL +JS_ENGINE_OPTS=[]#['-j'] +PARSER_ENGINE=SPIDERMONKEY_SHELL +PARSER_OPTS=[]#['-j'] +#PARSER_ENGINE=V8_ENGINE +#PARSER_OPTS = [] +#JS_ENGINE=V8_ENGINE +JS_COMPILER=path_from_root(['src', 'parser.js']) + |