Skip to content
Snippets Groups Projects
Commit 1d0302d0 authored by David Klempner's avatar David Klempner
Browse files

Add a tsan suppression file with OPENSSL_cleanse and use it in run_tests

parent 56c3dd7d
No related branches found
No related tags found
No related merge requests found
...@@ -108,10 +108,11 @@ class PythonLanguage(object): ...@@ -108,10 +108,11 @@ class PythonLanguage(object):
_CONFIGS = { _CONFIGS = {
'dbg': SimpleConfig('dbg'), 'dbg': SimpleConfig('dbg'),
'opt': SimpleConfig('opt'), 'opt': SimpleConfig('opt'),
'tsan': SimpleConfig('tsan'), 'tsan': SimpleConfig('tsan', environ={
'TSAN_OPTIONS': 'suppressions=tools/tsan_suppressions.txt'}),
'msan': SimpleConfig('msan'), 'msan': SimpleConfig('msan'),
'asan': SimpleConfig('asan', environ={ 'asan': SimpleConfig('asan', environ={
'ASAN_OPTIONS': 'detect_leaks=1:color=always'}), 'ASAN_OPTIONS': 'detect_leaks=1:color=always:suppressions=tools/tsan_suppressions.txt'}),
'gcov': SimpleConfig('gcov'), 'gcov': SimpleConfig('gcov'),
'memcheck': ValgrindConfig('valgrind', 'memcheck'), 'memcheck': ValgrindConfig('valgrind', 'memcheck'),
'helgrind': ValgrindConfig('dbg', 'helgrind') 'helgrind': ValgrindConfig('dbg', 'helgrind')
......
# OPENSSL_cleanse does racy access to a global
race:OPENSSL_cleanse
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment