mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 10:43:24 +00:00
Add bloat data to tree cells that have it.
This commit is contained in:
parent
4105801cb0
commit
61a3493d1e
@ -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}";
|
||||
|
Loading…
Reference in New Issue
Block a user