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

Unified Diff: tools/valgrind/drmemory_analyze.py

Issue 8770007: Change drmemory_analyze to print reports and suppressions to stdout (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 112457)
+++ tools/valgrind/drmemory_analyze.py (working copy)
@@ -157,9 +157,11 @@
return 0
logging.error("Found %i error reports" % len(to_report))
+ sys.stderr.flush()
for report in to_report:
self.error_count += 1
- logging.error("Report #%d\n%s" % (self.error_count, report))
+ logging.info("Report #%d\n%s" % (self.error_count, report))
+ sys.stdout.flush()
logging.error("Total: %i error reports" % len(to_report))
sys.stderr.flush()
return -1
« 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