5 lines
255 B
Python
5 lines
255 B
Python
def match_broken(abi, platform, device_platform, toolchain, subtest=None):
|
|
lp64_abis = ('arm64-v8a', 'mips64', 'x86_64')
|
|
if subtest == 'android_support_unittests' and abi in lp64_abis:
|
|
return abi, 'http://b/24614583'
|
|
return None, None
|