diff options
author | alon@honor <none@none> | 2010-09-09 21:22:12 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-09-09 21:22:12 -0700 |
commit | 5bc458f7a3675ea2f36c71e4456fc1948526cae7 (patch) | |
tree | 824f3b2f9cdf48d05a45971e1025f20ccbd0c1fa /tests/settings.py | |
parent | a523ad539ccf91b7a162ac1ac18f9e1bf88f5147 (diff) |
fix some regexps that v8 and sm do not agree on
Diffstat (limited to 'tests/settings.py')
-rw-r--r-- | tests/settings.py | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/tests/settings.py b/tests/settings.py index 1ed85ed4..d4834faf 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -2,14 +2,13 @@ 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 = [] +SPIDERMONKEY_ENGINE=os.path.expanduser('~/Dev/tracemonkey/js/src/js') +V8_ENGINE=os.path.expanduser('~/Dev/v8/d8') + +#PARSER_ENGINE=SPIDERMONKEY_ENGINE +PARSER_ENGINE=V8_ENGINE + +JS_ENGINE=SPIDERMONKEY_ENGINE #JS_ENGINE=V8_ENGINE +JS_ENGINE_OPTS=[]#['-j'] |