aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-05-29 15:28:56 -0700
committerGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-05-29 15:28:56 -0700
commitd97caa1edcfae7b3a1ac5561b239d3158f2ae78d (patch)
tree89030efa037065370f8c4ae79da70e52004f21fd /tools/run_tests/run_tests.py
parenteaee2bcb32e203a9ae79e514f552f31e254d74f6 (diff)
parent6fbdd4987505a79ac599690efb095a7324e91e76 (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/run_tests.py')
-rwxr-xr-xtools/run_tests/run_tests.py3
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'),