1 def match_broken(abi, platform, device_platform, toolchain, subtest=None): 2 if abi == 'x86': 3 return abi, 'http://b/25981507' 4 return None, None 5 6 7 def match_unsupported(abi, platform, device_platform, toolchain, subtest=None): 8 if not toolchain.startswith('clang'): 9 return toolchain 10 if not abi.startswith('armeabi') and not abi == 'x86': 11 return abi 12 if device_platform < 19: 13 return device_platform 14 return None 15