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)