Lang Hames c6fbd12226
[orc-rt] Fix unit tests. (#154469)
orc-rt/test/unit/lit.site.cfg.py.in was pointing to the lit.cfg.py file for the
regression tests, causing the `check-orc-rt-unit` target to re-run the
regression tests rather than running the unit tests.
2025-08-20 14:51:13 +10:00

16 lines
375 B
Python

# -*- Python -*-
# Configuration file for the 'lit' test runner.
import os
import lit.formats
import lit.util
from lit.llvm import llvm_config
config.name = "ORC-RT-Unit"
config.test_format = lit.formats.GoogleTest(config.llvm_build_mode, "Tests")
config.test_exec_root = os.path.join(config.orc_rt_obj_root, "unittests")
config.test_source_root = config.test_exec_root