about summary refs log tree commit diff homepage
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorDan Liew <daniel.liew@imperial.ac.uk>2014-01-12 19:55:48 +0000
committerDan Liew <daniel.liew@imperial.ac.uk>2014-01-20 13:21:31 +0000
commitf5afeb84a847e3876122211913b7117fd3ad1862 (patch)
tree9f547ba0522226f4a52769c9f34aa878825de3d8 /test/lit.cfg
parent2cfdfe0ddc88c8ec9619c37fd207778dcf2824e2 (diff)
downloadklee-f5afeb84a847e3876122211913b7117fd3ad1862.tar.gz
Put llvm tools directory at beginning of PATH list so that the LLVM
version that KLEE and llvm-as use is the same.
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index e8dca065..191461b6 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -34,7 +34,7 @@ if klee_obj_root is not None:
     if not llvm_tools_dir:
         lit.fatal('No LLVM tool directory set!')
 
-    path = os.path.pathsep.join((klee_tools_dir, config.environment['PATH'], llvm_tools_dir))
+    path = os.path.pathsep.join((llvm_tools_dir, klee_tools_dir, config.environment['PATH'] ))
     config.environment['PATH'] = path
 
 # Propogate 'HOME' through the environment.