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
This commit is contained in:
ccooper%deadsquid.com 2009-01-12 21:41:01 +00:00
parent 9ef034c99f
commit ebc19f9bf5

View File

@ -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)