diff options
author | Craig Tiller <ctiller@google.com> | 2015-05-29 09:10:10 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-05-29 09:11:11 -0700 |
commit | 6fbdd4987505a79ac599690efb095a7324e91e76 (patch) | |
tree | 1c462afbdaa265d6b19b01b74c2cf1c9eaf855c5 /tools | |
parent | 742ec0aba4ae00b129c49b3fd8ea58c00a10c50a (diff) |
Enable LSAN report_objects by default
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 2428e21ca3..cd8f39b3a1 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -301,7 +301,8 @@ _CONFIGS = { 'msan': SimpleConfig('msan'), 'ubsan': SimpleConfig('ubsan'), 'asan': SimpleConfig('asan', environ={ - 'ASAN_OPTIONS': 'detect_leaks=1:color=always:suppressions=tools/tsan_suppressions.txt'}), + 'ASAN_OPTIONS': 'detect_leaks=1:color=always:suppressions=tools/tsan_suppressions.txt', + 'LSAN_OPTIONS': 'report_objects=1'}), 'asan-noleaks': SimpleConfig('asan', environ={ 'ASAN_OPTIONS': 'detect_leaks=0:color=always:suppressions=tools/tsan_suppressions.txt'}), 'gcov': SimpleConfig('gcov'), |