Browse Source

Fix arm platform names

tags/v0.0.1
Thom Wiggers 5 years ago
parent
commit
ea47ab3dad
No known key found for this signature in database GPG Key ID: 1BB0A7CE26E363
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/test_functest.py

+ 1
- 1
test/test_functest.py View File

@@ -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))


Loading…
Cancel
Save