diff options
Diffstat (limited to 'tests/settings.py')
-rw-r--r-- | tests/settings.py | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/tests/settings.py b/tests/settings.py index d6b24d66..21c7cef0 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -1,14 +1,15 @@ TEMP_DIR='/dev/shm' -CLANG=os.path.expanduser('~/Dev/llvm-2.7/cbuild/bin/clang++') -#CLANG=os.path.expanduser('~/Dev/llvm-2.8/cbuild/Release/bin/clang++') -LLVM_GCC=os.path.expanduser('~/Dev/llvm-gcc-2.7/cbuild/install/bin/llvm-g++') +LLVM_ROOT=os.path.expanduser('~/Dev/llvm-2.8/cbuild/Release/bin') # Might not need 'Release' + +CLANG=os.path.expanduser(os.path.join(LLVM_ROOT, 'clang++')) +LLVM_GCC=os.path.expanduser('~/Dev/llvm-gcc-4.2-2.8.source/cbuild/install/bin/llvm-g++') COMPILERS = { - 'clang': { - 'path': CLANG, - 'quantum_size': 4, # See settings.js - }, +# 'clang': { +# 'path': CLANG, +# 'quantum_size': 4, # See settings.js +# }, 'llvm_gcc': { 'path': LLVM_GCC, 'quantum_size': 1, @@ -18,15 +19,16 @@ COMPILERS = { COMPILER_OPTS = ['-m32'] # Need to build as 32bit arch, for now - # various errors on 64bit compilation -LLVM_DIS=os.path.expanduser('~/Dev/llvm-2.7/cbuild/bin/llvm-dis') +LLVM_DIS=os.path.expanduser(os.path.join(LLVM_ROOT, 'llvm-dis')) +LLVM_DIS_OPTS=['-show-annotations'] SPIDERMONKEY_ENGINE=os.path.expanduser('~/Dev/mozilla-central/js/src/js') 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 +PARSER_ENGINE=SPIDERMONKEY_ENGINE +#PARSER_ENGINE=V8_ENGINE JS_ENGINE=SPIDERMONKEY_ENGINE #JS_ENGINE=V8_ENGINE |