16 lines
493 B
Python
16 lines
493 B
Python
|
|
||
|
import lit.llvm
|
||
|
|
||
|
config.llvm_tools_dir = "@MLIR_TOOLS_DIR@"
|
||
|
config.mlir_obj_root = "@MLIR_BUILD_DIR@"
|
||
|
config.mlir_tools_dir = "@MLIR_TOOLS_DIR@"
|
||
|
config.suffixes = ['.mlir']
|
||
|
|
||
|
config.onnf_mlir_tools_dir = "@ONNF_TOOLS_DIR@"
|
||
|
config.onnf_mlir_test_src_dir = "@ONNF_LIT_TEST_SRC_DIR@"
|
||
|
config.onnf_mlir_test_build_dir = "@ONNF_LIT_TEST_BUILD_DIR@"
|
||
|
|
||
|
lit.llvm.initialize(lit_config, config)
|
||
|
|
||
|
# Let the main config do the real work.
|
||
|
lit_config.load_config(config, "@ONNF_LIT_TEST_SRC_DIR@/lit.cfg.py")
|