1def match_unsupported(abi, platform, device_platform, toolchain, subtest=None):
2 if abi not in ('x86', 'x86_64'):
3 return abi
4 return None
5
6def match_broken(abi, platform, device_platform, toolchain, subtest=None):
7 if abi == 'x86_64':
8 return abi, 'http://b/24620865'
9 return None, None
10