aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-04-09 10:27:26 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-04-09 10:27:26 -0700
commit0f49ca13af526358f29f5cfcac55f00856700520 (patch)
tree1c6f6f24f26c07c95aa2a9cc4ea3b027b0666658 /tests
parent2de9204541c6f45072e3868377d78b98b25c97a9 (diff)
fixes for llvm 2.9
Diffstat (limited to 'tests')
-rw-r--r--tests/settings.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/settings.py b/tests/settings.py
index cf3564ca..50619a07 100644
--- a/tests/settings.py
+++ b/tests/settings.py
@@ -1,10 +1,8 @@
TEMP_DIR='/dev/shm'
-#LLVM_ROOT=os.path.expanduser('~/Dev/llvm-2.8/cbuild/Release/bin')
-LLVM_ROOT=os.path.expanduser('~/Dev/llvm-svn/build/Release+Asserts/bin')
+LLVM_ROOT=os.path.expanduser('~/Dev/llvm-2.9/cbuild/bin')
-#LLVM_GCC=os.path.expanduser('~/Dev/llvm-gcc-4.2-2.8.source/cbuild/install/bin/llvm-g++')
-LLVM_GCC=os.path.expanduser('~/Dev/llvm-gcc-svn/cbuild/install/bin/llvm-g++')
+LLVM_GCC=os.path.expanduser('~/Dev/llvm-gcc-2.9/cbuild/install/bin/llvm-g++')
COMPILER_OPTS = ['-m32'] # Need to build as 32bit arch, for now -
# various errors on 64bit compilation
@@ -19,8 +17,6 @@ V8_ENGINE = [os.path.expanduser('~/Dev/v8/d8')]
COMPILER_ENGINE=V8_ENGINE
JS_ENGINE=V8_ENGINE
-JS_ENGINE_PARAMS = ['--'] # For V8
-JS_ENGINE_PARAMS = [] # For SpiderMonkey
TIMEOUT = None