bolt/deps/llvm-18.1.8/compiler-rt/test/metadata/lit.cfg.py

10 lines
347 B
Python
Raw Normal View History

2025-02-14 19:21:04 +01:00
import os
config.name = "SanitizerBinaryMetadata"
config.test_source_root = os.path.dirname(__file__)
config.suffixes = [".cpp"]
# Binary metadata is currently emited only for ELF binaries
# and sizes of stack arguments depend on the arch.
if config.host_os not in ["Linux"] or config.target_arch not in ["x86_64"]:
config.unsupported = True