Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(304)

Unified Diff: tools-webrtc/mb/mb.py

Issue 2868443002: Enable LSan leak checking for ASan bots. (Closed)
Patch Set: Removing deleted suppressions Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools-webrtc/mb/mb_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools-webrtc/mb/mb.py
diff --git a/tools-webrtc/mb/mb.py b/tools-webrtc/mb/mb.py
index a2a593f95988e0a992675f9e86b49251deffdcba..55ae8ba0bbe4972fe0c05731a493646e50b7cb2a 100755
--- a/tools-webrtc/mb/mb.py
+++ b/tools-webrtc/mb/mb.py
@@ -1105,6 +1105,7 @@ class MetaBuildWrapper(object):
]
asan = 'is_asan=true' in vals['gn_args']
+ lsan = 'is_lsan=true' in vals['gn_args']
msan = 'is_msan=true' in vals['gn_args']
tsan = 'is_tsan=true' in vals['gn_args']
@@ -1124,6 +1125,7 @@ class MetaBuildWrapper(object):
cmdline.extend([
'--',
'--asan=%d' % asan,
+ '--lsan=%d' % lsan,
'--msan=%d' % msan,
'--tsan=%d' % tsan,
])
« no previous file with comments | « no previous file | tools-webrtc/mb/mb_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698