brintos

brintos / llvm-project-archived public Read only

0
0
Text · 318 B · 6c4647c Raw
11 lines · plain
1if not "ARM" in config.root.targets:2    config.unsupported = True3 4if config.llvm_use_sanitizer:5    suppr = os.path.join(6        os.path.dirname(os.path.realpath(__file__)), "suppressions.txt"7    )8    config.environment["LSAN_OPTIONS"] = "suppressions={}".format(suppr)9 10config.suffixes = [".test", ".cpp", ".c"]11