summaryrefslogtreecommitdiff
path: root/test/Unit
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2010-11-27 13:10:11 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2010-11-27 13:10:11 +0000
commitd420e7b76cefb350a9cb89f1fb417f3f42636e30 (patch)
tree6b6f5b3a226ae5be86bfe36cc848a3091e3e8483 /test/Unit
parent3946e3b4764ab0146693aad53687d33b7ae6bb78 (diff)
downloadllvm-d420e7b76cefb350a9cb89f1fb417f3f42636e30.tar.gz
llvm-d420e7b76cefb350a9cb89f1fb417f3f42636e30.tar.bz2
llvm-d420e7b76cefb350a9cb89f1fb417f3f42636e30.tar.xz
CMake: lit(check.vcproj) can run with multiple configurations on Visual Studio.
Unittests need LLVM_BUILD_MODE to pick up each test. Confirmed on CentOS5, Mingw, MSYS, and with possible configurations on VS8 and VS10. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120212 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Unit')
-rw-r--r--test/Unit/lit.site.cfg.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Unit/lit.site.cfg.in b/test/Unit/lit.site.cfg.in
index 51b5bc416f..75932a4897 100644
--- a/test/Unit/lit.site.cfg.in
+++ b/test/Unit/lit.site.cfg.in
@@ -8,5 +8,14 @@ config.llvm_build_mode = "@LLVM_BUILD_MODE@"
config.enable_shared = @ENABLE_SHARED@
config.shlibpath_var = "@SHLIBPATH_VAR@"
+# Support substitution of the tools_dir and build_mode with user parameters.
+# This is used when we can't determine the tool dir at configuration time.
+try:
+ config.llvm_tools_dir = config.llvm_tools_dir % lit.params
+ config.llvm_build_mode = config.llvm_build_mode % lit.params
+except KeyError,e:
+ key, = e.args
+ lit.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
+
# Let the main config do the real work.
lit.load_config(config, "@LLVM_SOURCE_DIR@/test/Unit/lit.cfg")