diff options
author | Andrew Trick <atrick@apple.com> | 2011-06-16 01:33:35 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-06-16 01:33:35 +0000 |
commit | 05c087d8934168f6dda429de5b0925a7be0cc9a3 (patch) | |
tree | 631a9da577f5eb8b8388c51c5155dacd0ae9a903 /test/lit.site.cfg.in | |
parent | 6fce128dd1e160a5d2d11cddec336686ff1f8706 (diff) |
Add support to lit for build mode requirements. e.g.
REQUIRES: Asserts
REQUIRES: Debug
This required chaining test configuration properties. It seems like a
generally good thing to do.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.site.cfg.in')
-rw-r--r-- | test/lit.site.cfg.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.site.cfg.in b/test/lit.site.cfg.in index 3588aa6245..5931a1c961 100644 --- a/test/lit.site.cfg.in +++ b/test/lit.site.cfg.in @@ -4,7 +4,7 @@ config.llvm_src_root = "@LLVM_SOURCE_DIR@" config.llvm_obj_root = "@LLVM_BINARY_DIR@" config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" config.llvmgcc_dir = "@LLVMGCCDIR@" -config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@" +config.llvm_build_modes = "@LLVM_BUILD_MODE@".split('+') config.python_executable = "@PYTHON_EXECUTABLE@" config.enable_shared = @ENABLE_SHARED@ |