diff options
author | alon@honor <none@none> | 2010-09-21 21:37:12 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-09-21 21:37:12 -0700 |
commit | 6ed3cfef2fdd09865e83d80046169930be5082c7 (patch) | |
tree | 880958abb35647277adf005aa172cf6016ead2b1 /tests/settings.py | |
parent | 427206373413805fef3c56915fa6e1ac9dd93627 (diff) |
test using both clang and llvm-gcc by default
Diffstat (limited to 'tests/settings.py')
-rw-r--r-- | tests/settings.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/settings.py b/tests/settings.py index 717a2b1c..53765fbe 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -3,9 +3,7 @@ TEMP_DIR='/dev/shm' CLANG=os.path.expanduser('~/Dev/llvm-2.7/cbuild/bin/clang++') LLVM_GCC=os.path.expanduser('~/Dev/llvm-gcc-2.7/cbuild/install/bin/llvm-g++') - -#COMPILER=LLVM_GCC -COMPILER=CLANG +COMPILERS = { 'clang': CLANG, 'llvm_gcc': LLVM_GCC } COMPILER_OPTS = ['-m32'] # Need to build as 32bit arch, for now - # various errors on 64bit compilation |