
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.
16 lines
375 B
Python
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
|