1 if not "ARM" in config.root.targets:
2 config.unsupported = True
3 if not "AArch64" in config.root.targets:
4 config.unsupported = True
6 if config.llvm_use_sanitizer:
8 os.path.dirname(os.path.realpath(__file__)), "suppressions.txt"
10 config.environment["LSAN_OPTIONS"] = "suppressions={}".format(suppr)
12 config.suffixes = [".test", ".cpp", ".c"]