소스 검색

Disable asan if clang is mentioned in CC (like in 'ccache clang')

kyber
Thom Wiggers 4 년 전
committed by Kris Kwiatkowski
부모
커밋
578a9d66ce
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      test/test_functest.py

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

@@ -54,7 +54,7 @@ def test_functest_sanitizers(implementation, impl_path, test_dir,
init, destr):
dest_dir = os.path.join(test_dir, 'bin')
env = None
if platform.machine() == 'ppc' and os.environ.get('CC', 'gcc') == 'clang':
if platform.machine() == 'ppc' and 'clang' in os.environ.get('CC', 'gcc'):
raise unittest.SkipTest("Clang does not support ASAN on ppc")
elif platform.machine() in ['armv7l', 'aarch64']:
env = {'ASAN_OPTIONS': 'detect_leaks=0'}


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