2017-08-04 01:55:54 +08:00
|
|
|
@LIT_SITE_CFG_IN_HEADER@
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2017-11-30 02:05:26 +08:00
|
|
|
config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
|
2017-07-28 03:18:35 +08:00
|
|
|
config.llvm_src_root = "@LLVM_SOURCE_DIR@"
|
|
|
|
config.llvm_obj_root = "@LLVM_BINARY_DIR@"
|
2022-03-16 06:15:56 +08:00
|
|
|
config.llvm_tools_dir = lit_config.substitute("@LLVM_TOOLS_DIR@")
|
2017-07-28 03:18:35 +08:00
|
|
|
|
2019-05-30 02:07:39 +08:00
|
|
|
import lit.llvm
|
|
|
|
lit.llvm.initialize(lit_config, config)
|
|
|
|
|
2017-07-28 03:18:35 +08:00
|
|
|
# Let the main config do the real work.
|
2017-08-03 01:16:25 +08:00
|
|
|
lit_config.load_config(config, "@LLVM_BINARY_DIR@/utils/lit/tests/lit.cfg")
|