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

This commit is contained in:
Thom Wiggers 2020-11-18 09:27:46 +01:00
父節點 3e2c7b6b05
當前提交 7557be7471
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 001BB0A7CE26E363

查看文件

@ -54,7 +54,7 @@ def test_functest_sanitizers(implementation, impl_path, test_dir,
init, destr): init, destr):
dest_dir = os.path.join(test_dir, 'bin') dest_dir = os.path.join(test_dir, 'bin')
env = None 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") raise unittest.SkipTest("Clang does not support ASAN on ppc")
elif platform.machine() in ['armv7l', 'aarch64']: elif platform.machine() in ['armv7l', 'aarch64']:
env = {'ASAN_OPTIONS': 'detect_leaks=0'} env = {'ASAN_OPTIONS': 'detect_leaks=0'}