Add debug lines to help understanding why total releasables are not displayed correctly during the builds
--- a/uh_parser/releaseables.pm Thu Sep 02 11:18:44 2010 +0100
+++ b/uh_parser/releaseables.pm Thu Sep 02 11:48:45 2010 +0100
@@ -289,7 +289,7 @@
my @distincts = grep {$_ ne $previous && ($previous = $_, 1) } sort @releasables;
my $nd = scalar(@distincts);
- #print "adding $package -> $nd to releaseables_by_package\n";
+ print "adding $package -> $nd to releaseables_by_package\n";
$::releaseables_by_package->{$package} = $nd;
}
}
--- a/uh_parser/uh.pl Thu Sep 02 11:18:44 2010 +0100
+++ b/uh_parser/uh.pl Thu Sep 02 11:48:45 2010 +0100
@@ -319,7 +319,7 @@
$failuresbyseverity = $recipe_failures_num_by_severity->{$package}->{$_} if (defined $recipe_failures_num_by_severity->{$package}->{$_});
$packageline .= "<td>$failuresbyseverity</td>";
}
- #print "package $package, releasables in this package: $releaseables_by_package->{$package}\n";
+ print "package $package, releasables in this package: $releaseables_by_package->{$package}\n";
$packageline .= "<td>".$missing_by_package->{$package}."/".$releaseables_by_package->{$package}."</td>" if ($missing);
$packageline .= "</tr>\n";
print AGGREGATED "$packageline\n";