From ebc19f9bf5fe9bebda706d6644e4d9215d9f18fb Mon Sep 17 00:00:00 2001 From: "ccooper%deadsquid.com" Date: Mon, 12 Jan 2009 21:41:01 +0000 Subject: [PATCH] b=462540 p=gozer r=bhearsum - tooltips for Lk, MH and A git-svn-id: svn://10.0.0.236/trunk@255793 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/tools/buildbotcustom/steps/test.py | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/mozilla/tools/buildbotcustom/steps/test.py b/mozilla/tools/buildbotcustom/steps/test.py index 622d8ea8e61..1a4a5629016 100644 --- a/mozilla/tools/buildbotcustom/steps/test.py +++ b/mozilla/tools/buildbotcustom/steps/test.py @@ -269,9 +269,24 @@ class CompareLeakLogs(ShellCommand): slug = "Lk: %s, MH: %s, A: %s" % (lk, mh, a) logText = "" if self.testname.startswith("current"): - logText += "TinderboxPrint: Lk:%s\n" % lk - logText += "TinderboxPrint: MH:%s\n" % mh - logText += "TinderboxPrint: A:%s\n" % a + logText += tinderboxPrint(lkTestname, + "Total Bytes malloc'ed and not free'd", + 0, + "bytes", + lkAbbr, + lk) + logText += tinderboxPrint(mhTestname, + "Maximum Heap Size", + 0, + "bytes", + mhAbbr, + mh) + logText += tinderboxPrint(aTestname, + "Allocations - number of calls to malloc and friends", + 0, + "count", + aAbbr, + a) else: logText += "Lk: %s\nMH: %s\nA: %s\n" % (lk, mh, a)