소스 검색

Fix arm platform names

tags/v0.0.1
Thom Wiggers 5 년 전
부모
커밋
ea47ab3dad
No known key found for this signature in database GPG 키 ID: 1BB0A7CE26E363
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      test/test_functest.py

+ 1
- 1
test/test_functest.py 파일 보기

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


불러오는 중...
취소
저장