Fix arm platform names

这个提交包含在:
Thom Wiggers 2019-02-27 13:11:36 +01:00
父节点 1180de5d30
当前提交 ea47ab3dad
找不到此签名对应的密钥
GPG 密钥 ID: 001BB0A7CE26E363

查看文件

@ -43,7 +43,7 @@ def check_functest_sanitizers(scheme_name, implementation_name):
env = None
if platform.machine() == 'powerpc':
raise unittest.SkipTest()
elif platform.machine() in ['arm32', 'aarch64']:
elif platform.machine() in ['armv7l', 'aarch64']:
env = {'ASAN_OPTIONS': 'detect_leaks=0'}
else:
print("Supported platform: {}".format(platform.machine))