diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-05-29 15:28:56 -0700 |
---|---|---|
committer | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-05-29 15:28:56 -0700 |
commit | d97caa1edcfae7b3a1ac5561b239d3158f2ae78d (patch) | |
tree | 89030efa037065370f8c4ae79da70e52004f21fd /tools/run_tests | |
parent | eaee2bcb32e203a9ae79e514f552f31e254d74f6 (diff) | |
parent | 6fbdd4987505a79ac599690efb095a7324e91e76 (diff) |
Merge pull request #1817 from ctiller/what-happens-if-a-hippopotamus-lives-on-your-roof
Enable LSAN report_objects by default
Diffstat (limited to 'tools/run_tests')
-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 7d5d6b43b3..602edc70ba 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'), |