• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1def match_broken(abi, platform, toolchain, subtest=None):
2    if toolchain == 'clang':
3        if abi.startswith('armeabi'):
4            return ' '.join([toolchain, abi]), 'http://b/26031639'
5    return None, None
6