From 1b3474f8e2b0825cd91be4c359b3780c58805c57 Mon Sep 17 00:00:00 2001 From: "mcafee%netscape.com" Date: Wed, 27 Oct 1999 06:34:28 +0000 Subject: [PATCH] switching to absolute leak/bloat numbers. --- webtools/tinderbox/bloat.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webtools/tinderbox/bloat.pl b/webtools/tinderbox/bloat.pl index 426ef9403e9f..01559c80c405 100755 --- a/webtools/tinderbox/bloat.pl +++ b/webtools/tinderbox/bloat.pl @@ -75,7 +75,9 @@ sub find_bloat_data { if ($inBloatStats) { if (/^TOTAL/) { chomp; - my ($leaks, $bloat) = (split)[2,4]; + # 2,4 is percentage, 1,3 is absolute. + #my ($leaks, $bloat) = (split)[2,4]; + my ($leaks, $bloat) = (split)[1,3]; chop $leaks; chop $bloat; return $leaks, $bloat;