24 lines
802 B
Python
24 lines
802 B
Python
# -*- Python -*-
|
|
|
|
import os
|
|
|
|
def get_required_attr(config, attr_name):
|
|
attr_value = getattr(config, attr_name, None)
|
|
if not attr_value:
|
|
lit_config.fatal(
|
|
"No attribute %r in test configuration! You may need to run "
|
|
"tests from your build directory or add this attribute "
|
|
"to lit.site.cfg " % attr_name)
|
|
return attr_value
|
|
|
|
# Setup config name.
|
|
config.name = 'ThreadSanitizer-Unit'
|
|
|
|
# Setup test source and exec root. For unit tests, we define
|
|
# it as build directory with TSan unit tests.
|
|
llvm_obj_root = get_required_attr(config, "llvm_obj_root")
|
|
config.test_exec_root = os.path.join(llvm_obj_root, "projects",
|
|
"compiler-rt", "lib",
|
|
"tsan", "tests")
|
|
config.test_source_root = config.test_exec_root
|