Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / metadata / lit.cfg.py
bloba66e01e483d77cce2a62d4b4ba5c218227eb50e2
1 import os
3 config.name = "SanitizerBinaryMetadata"
4 config.test_source_root = os.path.dirname(__file__)
5 config.suffixes = [".cpp"]
6 # Binary metadata is currently emited only for ELF binaries
7 # and sizes of stack arguments depend on the arch.
8 if config.host_os not in ["Linux"] or config.target_arch not in ["x86_64"]:
9 config.unsupported = True