Only skip ASAN on ppc with Clang
This commit is contained in:
父節點
53591961c9
當前提交
dac7235643
@ -41,7 +41,7 @@ def check_functest(scheme_name, implementation_name):
|
||||
|
||||
def check_functest_sanitizers(scheme_name, implementation_name):
|
||||
env = None
|
||||
if platform.machine() == 'powerpc':
|
||||
if platform.machine() == 'ppc' and os.environ.get('CC', 'gcc') == 'clang':
|
||||
raise unittest.SkipTest()
|
||||
elif platform.machine() in ['armv7l', 'aarch64']:
|
||||
env = {'ASAN_OPTIONS': 'detect_leaks=0'}
|
||||
|
載入中…
新增問題並參考
Block a user