xref: /llvm-project/compiler-rt/test/metadata/lit.cfg.py (revision f98ee40f4b5d7474fc67e82824bf6abbaedb7b1c)
1import os
2
3config.name = "SanitizerBinaryMetadata"
4config.test_source_root = os.path.dirname(__file__)
5config.suffixes = [".cpp"]
6# Binary metadata is currently emited only for ELF binaries
7# and sizes of stack arguments depend on the arch.
8if config.host_os not in ["Linux"] or config.target_arch not in ["x86_64"]:
9    config.unsupported = True
10