Check subrange liveness at rematerialization
[llvm-project.git] / cross-project-tests / lit.site.cfg.py.in
blobae009ea04b228d27c667e23daebe569a55b4a01f
1 @LIT_SITE_CFG_IN_HEADER@
3 import sys
4 import lit.util
6 config.targets_to_build = "@TARGETS_TO_BUILD@".split()
7 config.llvm_src_root = "@LLVM_SOURCE_DIR@"
8 config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
9 config.llvm_libs_dir = "@LLVM_LIBS_DIR@"
10 config.llvm_shlib_dir = "@SHLIBDIR@"
11 config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
12 config.llvm_plugin_ext = "@LLVM_PLUGIN_EXT@"
13 config.cross_project_tests_obj_root = "@CROSS_PROJECT_TESTS_BINARY_DIR@"
14 config.cross_project_tests_src_root = "@CROSS_PROJECT_TESTS_SOURCE_DIR@"
15 config.host_triple = "@LLVM_HOST_TRIPLE@"
16 config.target_triple = "@TARGET_TRIPLE@"
17 config.is_msvc = lit.util.pythonize_bool("@MSVC@")
18 config.llvm_enabled_projects = "@LLVM_ENABLE_PROJECTS@".split(";")
20 config.mlir_src_root = "@MLIR_SOURCE_DIR@"
22 config.llvm_use_sanitizer = "@LLVM_USE_SANITIZER@"
24 # Support substitution of the tools_dir with user parameters. This is
25 # used when we can't determine the tool dir at configuration time.
26 try:
27 config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
28 config.llvm_shlib_dir = config.llvm_shlib_dir % lit_config.params
29 except KeyError:
30 e = sys.exc_info()[1]
31 key, = e.args
32 lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
34 import lit.llvm
35 lit.llvm.initialize(lit_config, config)
37 # Let the main config do the real work.
38 lit_config.load_config(config, "@CROSS_PROJECT_TESTS_SOURCE_DIR@/lit.cfg.py")