4 lines
183 B
Python
4 lines
183 B
Python
def match_broken(abi, platform, toolchain, subtest=None):
|
|
if abi not in ('arm64-v8a', 'mips64', 'x86_64'):
|
|
return abi, 'https://b.android.com/74835'
|
|
return None, None
|