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

Unified Diff: tools/valgrind/drmemory_analyze.py

Issue 8638010: Print out at-exit ASSERT FAILURES too (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/valgrind/drmemory_analyze.py
===================================================================
--- tools/valgrind/drmemory_analyze.py (revision 111137)
+++ tools/valgrind/drmemory_analyze.py (working copy)
@@ -84,6 +84,13 @@
self.ReadLine()
break
+ while True:
+ self.ReadLine();
+ if (self.line_ == ''): break
+
+ if self.line_.startswith("ASSERT FAILURE"):
+ self.reports.append(self.line_.strip())
+
self.cur_fd_.close()
def Report(self, check_sanity):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698