
config.host_os is derived from CMAKE_SYSTEM_NAME which specifies the target. See: https://cmake.org/cmake/help/latest/variable/CMAKE_SYSTEM_NAME.html To reduce confusion, rename it to config.target_os. The variable name config.target_os was already being used by the Orc tests. Rename it to config.orc_test_target_os with a FIXME to remove. Reviewers: JDevlieghere, MaskRay Reviewed By: MaskRay Pull Request: https://github.com/llvm/llvm-project/pull/149015
66 lines
2.0 KiB
Python
66 lines
2.0 KiB
Python
import os
|
|
|
|
# Setup config name.
|
|
config.name = "RTSAN" + config.name_suffix
|
|
|
|
|
|
default_rtsan_opts = "atexit_sleep_ms=0"
|
|
|
|
if config.target_os == "Darwin":
|
|
# On Darwin, we default to `abort_on_error=1`, which would make tests run
|
|
# much slower. Let's override this and run lit tests with 'abort_on_error=0'.
|
|
default_rtsan_opts += ":abort_on_error=0"
|
|
|
|
if default_rtsan_opts:
|
|
config.environment["RTSAN_OPTIONS"] = default_rtsan_opts
|
|
default_rtsan_opts += ":"
|
|
|
|
config.substitutions.append(
|
|
("%env_rtsan_opts=", "env RTSAN_OPTIONS=" + default_rtsan_opts)
|
|
)
|
|
|
|
# Setup source root.
|
|
config.test_source_root = os.path.dirname(__file__)
|
|
|
|
# Setup default compiler flags use with -frtsan-instrument option.
|
|
clang_rtsan_cflags = ["-frtsan-instrument", config.target_cflags]
|
|
|
|
clang_rtsan_cxxflags = config.cxx_mode_flags + clang_rtsan_cflags
|
|
|
|
|
|
def build_invocation(compile_flags):
|
|
return " " + " ".join([config.clang] + compile_flags) + " "
|
|
|
|
|
|
# Assume that llvm-rtsan is in the config.llvm_tools_dir.
|
|
llvm_rtsan = os.path.join(config.llvm_tools_dir, "llvm-rtsan")
|
|
|
|
# Setup substitutions.
|
|
if config.target_os == "Linux":
|
|
libdl_flag = "-ldl"
|
|
else:
|
|
libdl_flag = ""
|
|
|
|
config.substitutions.append(("%clang ", build_invocation([config.target_cflags])))
|
|
config.substitutions.append(
|
|
("%clangxx ", build_invocation(config.cxx_mode_flags + [config.target_cflags]))
|
|
)
|
|
config.substitutions.append(("%clang_rtsan ", build_invocation(clang_rtsan_cflags)))
|
|
config.substitutions.append(("%clangxx_rtsan", build_invocation(clang_rtsan_cxxflags)))
|
|
config.substitutions.append(("%llvm_rtsan", llvm_rtsan))
|
|
|
|
# Default test suffixes.
|
|
config.suffixes = [".c", ".cpp"]
|
|
|
|
if config.target_os not in ["Darwin", "FreeBSD", "Linux", "NetBSD", "OpenBSD"]:
|
|
config.unsupported = True
|
|
elif "64" not in config.host_arch:
|
|
if "arm" in config.host_arch:
|
|
if "-mthumb" in config.target_cflags:
|
|
config.unsupported = True
|
|
else:
|
|
config.unsupported = True
|
|
|
|
if config.target_os == "NetBSD":
|
|
config.substitutions.insert(0, ("%run", config.netbsd_nomprotect_prefix))
|