13 lines
389 B
INI
13 lines
389 B
INI
|
if not "ARM" in config.root.targets:
|
||
|
config.unsupported = True
|
||
|
if not "AArch64" in config.root.targets:
|
||
|
config.unsupported = True
|
||
|
|
||
|
if config.llvm_use_sanitizer:
|
||
|
suppr = os.path.join(
|
||
|
os.path.dirname(os.path.realpath(__file__)), "suppressions.txt"
|
||
|
)
|
||
|
config.environment["LSAN_OPTIONS"] = "suppressions={}".format(suppr)
|
||
|
|
||
|
config.suffixes = [".test", ".cpp", ".c"]
|