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