Commit 1d067221 authored by timurrrr@chromium.org's avatar timurrrr@chromium.org

Print out at-exit ASSERT FAILURES too

Long term solution is to tweak Dr. Memory to print out such errors to stderr

TBR=bruening,rnk
Review URL: http://codereview.chromium.org/8638010

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111138 0039d316-1c4b-4281-b951-d872f2087c98
parent f968aaa7
......@@ -84,6 +84,13 @@ class DrMemoryAnalyze:
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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment