diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-06-06 13:28:37 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-06-06 13:28:37 +0000 |
commit | e3bf521b7c77fcc4e482b6a3ab1d049a283192d6 (patch) | |
tree | 940e53407cd6366e8ac8e938deef9f352c3d88d2 | |
parent | 5752dd46acc2189f3661229b53eb4df82875e3fa (diff) | |
download | bcm5719-llvm-e3bf521b7c77fcc4e482b6a3ab1d049a283192d6.tar.gz bcm5719-llvm-e3bf521b7c77fcc4e482b6a3ab1d049a283192d6.zip |
Remove a bunch of copy-paste: use common config for sanitizer lit/unit tests
llvm-svn: 183407
-rw-r--r-- | compiler-rt/lib/lit.common.configured.in | 2 | ||||
-rw-r--r-- | compiler-rt/lib/lit.common.unit.configured.in | 5 | ||||
-rw-r--r-- | compiler-rt/lib/lsan/lit_tests/AsanConfig/lit.site.cfg.in | 23 | ||||
-rw-r--r-- | compiler-rt/lib/lsan/lit_tests/LsanConfig/lit.site.cfg.in | 23 | ||||
-rw-r--r-- | compiler-rt/lib/lsan/lit_tests/Unit/lit.cfg | 6 | ||||
-rw-r--r-- | compiler-rt/lib/lsan/lit_tests/Unit/lit.site.cfg.in | 16 | ||||
-rw-r--r-- | compiler-rt/lib/lsan/lit_tests/lit.common.cfg | 8 | ||||
-rw-r--r-- | compiler-rt/lib/msan/lit_tests/Unit/lit.cfg | 6 | ||||
-rw-r--r-- | compiler-rt/lib/msan/lit_tests/Unit/lit.site.cfg.in | 16 | ||||
-rw-r--r-- | compiler-rt/lib/msan/lit_tests/lit.cfg | 9 | ||||
-rw-r--r-- | compiler-rt/lib/msan/lit_tests/lit.site.cfg.in | 19 | ||||
-rw-r--r-- | compiler-rt/lib/tsan/lit_tests/Unit/lit.cfg | 6 | ||||
-rw-r--r-- | compiler-rt/lib/tsan/lit_tests/Unit/lit.site.cfg.in | 18 | ||||
-rw-r--r-- | compiler-rt/lib/tsan/lit_tests/lit.cfg | 9 | ||||
-rw-r--r-- | compiler-rt/lib/tsan/lit_tests/lit.site.cfg.in | 18 | ||||
-rw-r--r-- | compiler-rt/lib/ubsan/lit_tests/lit.cfg | 9 | ||||
-rw-r--r-- | compiler-rt/lib/ubsan/lit_tests/lit.site.cfg.in | 18 |
17 files changed, 39 insertions, 172 deletions
diff --git a/compiler-rt/lib/lit.common.configured.in b/compiler-rt/lib/lit.common.configured.in index 5ca9b1bd70c..f7c29f62e26 100644 --- a/compiler-rt/lib/lit.common.configured.in +++ b/compiler-rt/lib/lit.common.configured.in @@ -3,7 +3,9 @@ # Generic config options for all compiler-rt lit tests. config.target_triple = "@TARGET_TRIPLE@" +config.host_arch = "@HOST_ARCH@" config.host_os = "@HOST_OS@" +config.llvm_build_mode = "@LLVM_BUILD_MODE@" config.llvm_src_root = "@LLVM_SOURCE_DIR@" config.llvm_obj_root = "@LLVM_BINARY_DIR@" config.compiler_rt_src_root = "@COMPILER_RT_SOURCE_DIR@" diff --git a/compiler-rt/lib/lit.common.unit.configured.in b/compiler-rt/lib/lit.common.unit.configured.in index c726bba29a7..1eac25b2983 100644 --- a/compiler-rt/lib/lit.common.unit.configured.in +++ b/compiler-rt/lib/lit.common.unit.configured.in @@ -4,10 +4,15 @@ # Generic config options for all compiler-rt unit tests. config.target_triple = "@TARGET_TRIPLE@" config.llvm_src_root = "@LLVM_SOURCE_DIR@" +config.llvm_obj_root = "@LLVM_BINARY_DIR@" +config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" config.compiler_rt_src_root = "@COMPILER_RT_SOURCE_DIR@" config.llvm_build_mode = "@LLVM_BUILD_MODE@" +# LLVM tools dir and build mode can be passed in lit parameters, +# so try to apply substitution. 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 diff --git a/compiler-rt/lib/lsan/lit_tests/AsanConfig/lit.site.cfg.in b/compiler-rt/lib/lsan/lit_tests/AsanConfig/lit.site.cfg.in index d57c67d691e..4557d790a03 100644 --- a/compiler-rt/lib/lsan/lit_tests/AsanConfig/lit.site.cfg.in +++ b/compiler-rt/lib/lsan/lit_tests/AsanConfig/lit.site.cfg.in @@ -1,21 +1,8 @@ -config.host_os = "@HOST_OS@" -config.host_arch = "@HOST_ARCH@" -config.llvm_build_mode = "@LLVM_BUILD_MODE@" -config.llvm_src_root = "@LLVM_SOURCE_DIR@" -config.compiler_rt_src_root = "@COMPILER_RT_SOURCE_DIR@" -config.llvm_obj_root = "@LLVM_BINARY_DIR@" -config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" -config.clang = "@LLVM_BINARY_DIR@/bin/clang" -config.compiler_rt_arch = "@COMPILER_RT_SUPPORTED_ARCH@" -config.lsan_lit_src_root = "@LSAN_LIT_SOURCE_DIR@" +# Load common config for all compiler-rt lit tests. +lit.load_config(config, "@COMPILER_RT_BINARY_DIR@/lib/lit.common.configured") -# LLVM tools dir can be passed in lit parameters, so try to -# apply substitution. -try: - config.llvm_tools_dir = config.llvm_tools_dir % lit.params -except KeyError,e: - key, = e.args - lit.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key, key)) +# Tool-specific config options. +config.lsan_lit_src_root = "@LSAN_LIT_SOURCE_DIR@" -# Let the main config do the real work. +# Load tool-specific config that would do the real work. lit.load_config(config, "@LSAN_LIT_SOURCE_DIR@/AsanConfig/lit.cfg") diff --git a/compiler-rt/lib/lsan/lit_tests/LsanConfig/lit.site.cfg.in b/compiler-rt/lib/lsan/lit_tests/LsanConfig/lit.site.cfg.in index 2aa933197e4..8bc5c41b65a 100644 --- a/compiler-rt/lib/lsan/lit_tests/LsanConfig/lit.site.cfg.in +++ b/compiler-rt/lib/lsan/lit_tests/LsanConfig/lit.site.cfg.in @@ -1,21 +1,8 @@ -config.host_os = "@HOST_OS@" -config.host_arch = "@HOST_ARCH@" -config.llvm_build_mode = "@LLVM_BUILD_MODE@" -config.llvm_src_root = "@LLVM_SOURCE_DIR@" -config.compiler_rt_src_root = "@COMPILER_RT_SOURCE_DIR@" -config.llvm_obj_root = "@LLVM_BINARY_DIR@" -config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" -config.clang = "@LLVM_BINARY_DIR@/bin/clang" -config.compiler_rt_arch = "@COMPILER_RT_SUPPORTED_ARCH@" -config.lsan_lit_src_root = "@LSAN_LIT_SOURCE_DIR@" +# Load common config for all compiler-rt lit tests. +lit.load_config(config, "@COMPILER_RT_BINARY_DIR@/lib/lit.common.configured") -# LLVM tools dir can be passed in lit parameters, so try to -# apply substitution. -try: - config.llvm_tools_dir = config.llvm_tools_dir % lit.params -except KeyError,e: - key, = e.args - lit.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key, key)) +# Tool-specific config options. +config.lsan_lit_src_root = "@LSAN_LIT_SOURCE_DIR@" -# Let the main config do the real work. +# Load tool-specific config that would do the real work. lit.load_config(config, "@LSAN_LIT_SOURCE_DIR@/LsanConfig/lit.cfg") diff --git a/compiler-rt/lib/lsan/lit_tests/Unit/lit.cfg b/compiler-rt/lib/lsan/lit_tests/Unit/lit.cfg index bcd1de4477f..46b361227ec 100644 --- a/compiler-rt/lib/lsan/lit_tests/Unit/lit.cfg +++ b/compiler-rt/lib/lsan/lit_tests/Unit/lit.cfg @@ -10,12 +10,6 @@ def get_required_attr(config, attr_name): "to lit.site.cfg " % attr_name) return attr_value -# Setup attributes common for all compiler-rt projects. -compiler_rt_src_root = get_required_attr(config, 'compiler_rt_src_root') -compiler_rt_lit_unit_cfg = os.path.join(compiler_rt_src_root, "lib", - "lit.common.unit.cfg") -lit.load_config(config, compiler_rt_lit_unit_cfg) - # Setup config name. config.name = 'LeakSanitizer-Unit' diff --git a/compiler-rt/lib/lsan/lit_tests/Unit/lit.site.cfg.in b/compiler-rt/lib/lsan/lit_tests/Unit/lit.site.cfg.in index 90c88c95215..f4a554c1be4 100644 --- a/compiler-rt/lib/lsan/lit_tests/Unit/lit.site.cfg.in +++ b/compiler-rt/lib/lsan/lit_tests/Unit/lit.site.cfg.in @@ -1,17 +1,11 @@ ## Autogenerated by LLVM/Clang configuration. # Do not edit! -config.target_triple = "@TARGET_TRIPLE@" -config.llvm_src_root = "@LLVM_SOURCE_DIR@" -config.compiler_rt_src_root = "@COMPILER_RT_SOURCE_DIR@" -config.llvm_build_mode = "@LLVM_BUILD_MODE@" -config.lsan_binary_dir = "@LSAN_BINARY_DIR@" +# Load common config for all compiler-rt unit tests. +lit.load_config(config, "@COMPILER_RT_BINARY_DIR@/lib/lit.common.unit.configured") -try: - 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)) +# Tool-specific config options. +config.lsan_binary_dir = "@LSAN_BINARY_DIR@" -# Let the main config do the real work. +# Load tool-specific config that would do the real work. lit.load_config(config, "@LSAN_SOURCE_DIR@/lit_tests/Unit/lit.cfg") diff --git a/compiler-rt/lib/lsan/lit_tests/lit.common.cfg b/compiler-rt/lib/lsan/lit_tests/lit.common.cfg index b3edc9bb219..dfae8db4c89 100644 --- a/compiler-rt/lib/lsan/lit_tests/lit.common.cfg +++ b/compiler-rt/lib/lsan/lit_tests/lit.common.cfg @@ -16,14 +16,6 @@ def get_required_attr(config, attr_name): lsan_lit_src_root = get_required_attr(config, 'lsan_lit_src_root') config.test_source_root = os.path.join(lsan_lit_src_root, 'TestCases') -# Setup attributes common for all compiler-rt projects. -compiler_rt_src_root = get_required_attr(config, 'compiler_rt_src_root') -compiler_rt_lit_cfg = os.path.join(compiler_rt_src_root, "lib", "lit.common.cfg") -if (not compiler_rt_lit_cfg) or (not os.path.exists(compiler_rt_lit_cfg)): - lit.fatal("Can't find common compiler-rt lit config at: %r" - % compiler_rt_lit_cfg) -lit.load_config(config, compiler_rt_lit_cfg) - clang_cxxflags = ("-ccc-cxx " + "-g " + "-O0 " diff --git a/compiler-rt/lib/msan/lit_tests/Unit/lit.cfg b/compiler-rt/lib/msan/lit_tests/Unit/lit.cfg index ee379d0deae..0b8043aa9c8 100644 --- a/compiler-rt/lib/msan/lit_tests/Unit/lit.cfg +++ b/compiler-rt/lib/msan/lit_tests/Unit/lit.cfg @@ -10,12 +10,6 @@ def get_required_attr(config, attr_name): "to lit.site.cfg " % attr_name) return attr_value -# Setup attributes common for all compiler-rt projects. -compiler_rt_src_root = get_required_attr(config, 'compiler_rt_src_root') -compiler_rt_lit_unit_cfg = os.path.join(compiler_rt_src_root, "lib", - "lit.common.unit.cfg") -lit.load_config(config, compiler_rt_lit_unit_cfg) - # Setup config name. config.name = 'MemorySanitizer-Unit' diff --git a/compiler-rt/lib/msan/lit_tests/Unit/lit.site.cfg.in b/compiler-rt/lib/msan/lit_tests/Unit/lit.site.cfg.in index a91f6713303..370b1a0746d 100644 --- a/compiler-rt/lib/msan/lit_tests/Unit/lit.site.cfg.in +++ b/compiler-rt/lib/msan/lit_tests/Unit/lit.site.cfg.in @@ -1,17 +1,11 @@ ## Autogenerated by LLVM/Clang configuration. # Do not edit! -config.target_triple = "@TARGET_TRIPLE@" -config.llvm_src_root = "@LLVM_SOURCE_DIR@" -config.compiler_rt_src_root = "@COMPILER_RT_SOURCE_DIR@" -config.llvm_build_mode = "@LLVM_BUILD_MODE@" -config.msan_binary_dir = "@MSAN_BINARY_DIR@" +# Load common config for all compiler-rt unit tests. +lit.load_config(config, "@COMPILER_RT_BINARY_DIR@/lib/lit.common.unit.configured") -try: - 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)) +# Tool-specific config options. +config.msan_binary_dir = "@MSAN_BINARY_DIR@" -# Let the main config do the real work. +# Load tool-specific config that would do the real work. lit.load_config(config, "@MSAN_SOURCE_DIR@/lit_tests/Unit/lit.cfg") diff --git a/compiler-rt/lib/msan/lit_tests/lit.cfg b/compiler-rt/lib/msan/lit_tests/lit.cfg index 42381885fe8..e047a261a9f 100644 --- a/compiler-rt/lib/msan/lit_tests/lit.cfg +++ b/compiler-rt/lib/msan/lit_tests/lit.cfg @@ -48,15 +48,6 @@ if llvm_src_root is None: lit.load_config(config, msan_site_cfg) raise SystemExit -# Setup attributes common for all compiler-rt projects. -compiler_rt_src_root = get_required_attr(config, "compiler_rt_src_root") -compiler_rt_lit_cfg = os.path.join(compiler_rt_src_root, "lib", - "lit.common.cfg") -if (not compiler_rt_lit_cfg) or (not os.path.exists(compiler_rt_lit_cfg)): - lit.fatal("Can't find common compiler-rt lit config at: %r" - % compiler_rt_lit_cfg) -lit.load_config(config, compiler_rt_lit_cfg) - # Setup default compiler flags used with -fsanitize=memory option. clang_msan_cflags = ["-fsanitize=memory", "-mno-omit-leaf-frame-pointer", diff --git a/compiler-rt/lib/msan/lit_tests/lit.site.cfg.in b/compiler-rt/lib/msan/lit_tests/lit.site.cfg.in index 3b969e0b061..25d378fae27 100644 --- a/compiler-rt/lib/msan/lit_tests/lit.site.cfg.in +++ b/compiler-rt/lib/msan/lit_tests/lit.site.cfg.in @@ -1,18 +1,5 @@ -config.target_triple = "@TARGET_TRIPLE@" -config.host_os = "@HOST_OS@" -config.llvm_src_root = "@LLVM_SOURCE_DIR@" -config.compiler_rt_src_root = "@COMPILER_RT_SOURCE_DIR@" -config.llvm_obj_root = "@LLVM_BINARY_DIR@" -config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" -config.clang = "@LLVM_BINARY_DIR@/bin/clang" +# Load common config for all compiler-rt lit tests. +lit.load_config(config, "@COMPILER_RT_BINARY_DIR@/lib/lit.common.configured") -# LLVM tools dir can be passed in lit parameters, so try to -# apply substitution. -try: - config.llvm_tools_dir = config.llvm_tools_dir % 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. +# Load tool-specific config that would do the real work. lit.load_config(config, "@MSAN_SOURCE_DIR@/lit_tests/lit.cfg") diff --git a/compiler-rt/lib/tsan/lit_tests/Unit/lit.cfg b/compiler-rt/lib/tsan/lit_tests/Unit/lit.cfg index 0a0dbbfa549..1b8d17585e0 100644 --- a/compiler-rt/lib/tsan/lit_tests/Unit/lit.cfg +++ b/compiler-rt/lib/tsan/lit_tests/Unit/lit.cfg @@ -10,12 +10,6 @@ def get_required_attr(config, attr_name): "to lit.site.cfg " % attr_name) return attr_value -# Setup attributes common for all compiler-rt projects. -compiler_rt_src_root = get_required_attr(config, 'compiler_rt_src_root') -compiler_rt_lit_unit_cfg = os.path.join(compiler_rt_src_root, "lib", - "lit.common.unit.cfg") -lit.load_config(config, compiler_rt_lit_unit_cfg) - # Setup config name. config.name = 'ThreadSanitizer-Unit' diff --git a/compiler-rt/lib/tsan/lit_tests/Unit/lit.site.cfg.in b/compiler-rt/lib/tsan/lit_tests/Unit/lit.site.cfg.in index 6eedc218087..964da91ecee 100644 --- a/compiler-rt/lib/tsan/lit_tests/Unit/lit.site.cfg.in +++ b/compiler-rt/lib/tsan/lit_tests/Unit/lit.site.cfg.in @@ -1,20 +1,8 @@ ## Autogenerated by LLVM/Clang configuration. # Do not edit! -config.llvm_obj_root = "@LLVM_BINARY_DIR@" -config.llvm_src_root = "@LLVM_SOURCE_DIR@" -config.compiler_rt_src_root = "@COMPILER_RT_SOURCE_DIR@" -config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" -config.llvm_build_mode = "@LLVM_BUILD_MODE@" +# Load common config for all compiler-rt unit tests. +lit.load_config(config, "@COMPILER_RT_BINARY_DIR@/lib/lit.common.unit.configured") -# LLVM tools dir can be passed in lit parameters, so try to -# apply substitution. -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. +# Load tool-specific config that would do the real work. lit.load_config(config, "@CMAKE_CURRENT_SOURCE_DIR@/Unit/lit.cfg") diff --git a/compiler-rt/lib/tsan/lit_tests/lit.cfg b/compiler-rt/lib/tsan/lit_tests/lit.cfg index d483d2fcbdc..6dc465437fd 100644 --- a/compiler-rt/lib/tsan/lit_tests/lit.cfg +++ b/compiler-rt/lib/tsan/lit_tests/lit.cfg @@ -48,15 +48,6 @@ if llvm_src_root is None: lit.load_config(config, tsan_site_cfg) raise SystemExit -# Setup attributes common for all compiler-rt projects. -compiler_rt_src_root = get_required_attr(config, 'compiler_rt_src_root') -compiler_rt_lit_cfg = os.path.join(compiler_rt_src_root, "lib", - "lit.common.cfg") -if (not compiler_rt_lit_cfg) or (not os.path.exists(compiler_rt_lit_cfg)): - lit.fatal("Can't find common compiler-rt lit config at: %r" - % compiler_rt_lit_cfg) -lit.load_config(config, compiler_rt_lit_cfg) - # Setup environment variables for running ThreadSanitizer. tsan_options = "atexit_sleep_ms=0" # Get path to external LLVM symbolizer to run ThreadSanitizer output tests. diff --git a/compiler-rt/lib/tsan/lit_tests/lit.site.cfg.in b/compiler-rt/lib/tsan/lit_tests/lit.site.cfg.in index 07b521af061..a212393a0e5 100644 --- a/compiler-rt/lib/tsan/lit_tests/lit.site.cfg.in +++ b/compiler-rt/lib/tsan/lit_tests/lit.site.cfg.in @@ -1,20 +1,8 @@ ## Autogenerated by LLVM/Clang configuration. # Do not edit! -config.clang = "@LLVM_BINARY_DIR@/bin/clang" -config.host_os = "@HOST_OS@" -config.llvm_src_root = "@LLVM_SOURCE_DIR@" -config.compiler_rt_src_root = "@COMPILER_RT_SOURCE_DIR@" -config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" -config.target_triple = "@TARGET_TRIPLE@" +# Load common config for all compiler-rt lit tests. +lit.load_config(config, "@COMPILER_RT_BINARY_DIR@/lib/lit.common.configured") -# LLVM tools dir can be passed in lit parameters, so try to -# apply substitution. -try: - config.llvm_tools_dir = config.llvm_tools_dir % 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. +# Load tool-specific config that would do the real work. lit.load_config(config, "@CMAKE_CURRENT_SOURCE_DIR@/lit.cfg") diff --git a/compiler-rt/lib/ubsan/lit_tests/lit.cfg b/compiler-rt/lib/ubsan/lit_tests/lit.cfg index ea6ebdf9001..fbefdf2d5c3 100644 --- a/compiler-rt/lib/ubsan/lit_tests/lit.cfg +++ b/compiler-rt/lib/ubsan/lit_tests/lit.cfg @@ -48,15 +48,6 @@ if llvm_src_root is None: lit.load_config(config, ubsan_site_cfg) raise SystemExit -# Setup attributes common for all compiler-rt projects. -compiler_rt_src_root = get_required_attr(config, 'compiler_rt_src_root') -compiler_rt_lit_cfg = os.path.join(compiler_rt_src_root, "lib", - "lit.common.cfg") -if not compiler_rt_lit_cfg or not os.path.exists(compiler_rt_lit_cfg): - lit.fatal("Can't find common compiler-rt lit config at: %r" - % compiler_rt_lit_cfg) -lit.load_config(config, compiler_rt_lit_cfg) - # Default test suffixes. config.suffixes = ['.c', '.cc', '.cpp'] diff --git a/compiler-rt/lib/ubsan/lit_tests/lit.site.cfg.in b/compiler-rt/lib/ubsan/lit_tests/lit.site.cfg.in index 07b521af061..a212393a0e5 100644 --- a/compiler-rt/lib/ubsan/lit_tests/lit.site.cfg.in +++ b/compiler-rt/lib/ubsan/lit_tests/lit.site.cfg.in @@ -1,20 +1,8 @@ ## Autogenerated by LLVM/Clang configuration. # Do not edit! -config.clang = "@LLVM_BINARY_DIR@/bin/clang" -config.host_os = "@HOST_OS@" -config.llvm_src_root = "@LLVM_SOURCE_DIR@" -config.compiler_rt_src_root = "@COMPILER_RT_SOURCE_DIR@" -config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" -config.target_triple = "@TARGET_TRIPLE@" +# Load common config for all compiler-rt lit tests. +lit.load_config(config, "@COMPILER_RT_BINARY_DIR@/lib/lit.common.configured") -# LLVM tools dir can be passed in lit parameters, so try to -# apply substitution. -try: - config.llvm_tools_dir = config.llvm_tools_dir % 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. +# Load tool-specific config that would do the real work. lit.load_config(config, "@CMAKE_CURRENT_SOURCE_DIR@/lit.cfg") |