Add debug lines to help understanding why total releasables are not displayed correctly during the builds
authorDario Sestito <darios@symbian.org>
Thu, 02 Sep 2010 11:48:45 +0100
changeset 317 2ca4533db9fe
parent 316 052986e0e361
child 318 66b0448c2de4
Add debug lines to help understanding why total releasables are not displayed correctly during the builds
uh_parser/releaseables.pm
uh_parser/uh.pl
--- 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";