From d4cac369ff4013973629b95ec540fd4c18c26e81 Mon Sep 17 00:00:00 2001 From: "warren%netscape.com" Date: Fri, 29 Oct 1999 02:39:10 +0000 Subject: [PATCH] Printed out TOTAL line for showbuilds.cgi git-svn-id: svn://10.0.0.236/trunk@52175 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/tools/tinderbox/bloatdiff.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mozilla/tools/tinderbox/bloatdiff.pl b/mozilla/tools/tinderbox/bloatdiff.pl index 1d36c0a4b51..525e547d7cf 100755 --- a/mozilla/tools/tinderbox/bloatdiff.pl +++ b/mozilla/tools/tinderbox/bloatdiff.pl @@ -104,6 +104,10 @@ print "Bloat/Leak Delta Report\n"; print "-------------------------------------------\n"; print "Current file: $NEWFILE\n"; print "Previous file: $OLDFILE\n"; +printf "%-20s %10s %10.2f%% %10s %10.2f%%\n", + ("TOTAL", + $newMap{"TOTAL"}{leaked}, $newMap{"TOTAL"}{leakPercent}, + $newMap{"TOTAL"}{bloat}, $newMap{"TOTAL"}{bloatPercent}); ################################################################################