1
1
şunun yansıması https://github.com/henrydcase/pqc.git eşitlendi 2024-11-22 07:35:38 +00:00

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

Bu işleme şunda yer alıyor:
Thom Wiggers 2020-11-18 09:27:46 +01:00 işlemeyi yapan: Kris Kwiatkowski
ebeveyn f5b1c258c4
işleme 578a9d66ce

Dosyayı Görüntüle

@ -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'}