ソースを参照

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

master
Thom Wiggers 4年前
コミット
7557be7471
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 1BB0A7CE26E363
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'}


読み込み中…
キャンセル
保存