Add bloat data to tree cells that have it.

This commit is contained in:
slamm%netscape.com 1999-10-23 01:18:04 +00:00
parent 4105801cb0
commit 61a3493d1e

View File

@ -314,6 +314,16 @@ sub print_table_row {
}
}
# Leak/Bloat
#
if (defined $bloat_by_log->{$logfile}) {
my $leaks, $bloat;
($leaks, $bloat) = @{ $bloat_by_log->{$logfile} };
printf "<br>%+.2f<br>%+.2f", $leaks, $bloat;
}
# Binary
#
if ($br->{binaryname} ne '') {
$binfile = "$buildtree/bin/$buildtime/$br->{buildname}/"
."$br->{binaryname}";