diff options
author | David Klempner <klempner@google.com> | 2015-02-04 16:08:01 -0800 |
---|---|---|
committer | David Klempner <klempner@google.com> | 2015-02-04 16:08:01 -0800 |
commit | 1d0302d03df9d5bde57fb326c5df3f6de43ddd6f (patch) | |
tree | db114245abb6feefeec6db112903c7cbdbfc5f1b /tools/run_tests | |
parent | 56c3dd7d6c604221e9b5f26fcc90ff593068004f (diff) |
Add a tsan suppression file with OPENSSL_cleanse and use it in run_tests
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/run_tests.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 280c3f05cb..cb54c0db82 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -108,10 +108,11 @@ class PythonLanguage(object): _CONFIGS = { 'dbg': SimpleConfig('dbg'), 'opt': SimpleConfig('opt'), - 'tsan': SimpleConfig('tsan'), + 'tsan': SimpleConfig('tsan', environ={ + 'TSAN_OPTIONS': 'suppressions=tools/tsan_suppressions.txt'}), 'msan': SimpleConfig('msan'), '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'), 'memcheck': ValgrindConfig('valgrind', 'memcheck'), 'helgrind': ValgrindConfig('dbg', 'helgrind') |