uh_parser/RaptorCommon.pm
changeset 185 b76adfbc6648
parent 176 6d3c3db11e72
child 236 08436a227940
--- a/uh_parser/RaptorCommon.pm	Mon Mar 08 17:19:08 2010 +0000
+++ b/uh_parser/RaptorCommon.pm	Mon Mar 08 18:21:32 2010 +0000
@@ -31,10 +31,12 @@
 
 sub dump_fault
 {
-	my ($category, $subcategory, $severity, $location, $component, $mmp, $phase, $recipe, $file, $line) = @_;
+	my ($category, $subcategory, $severity, $location, $component, $mmp, $phase, $recipe, $file) = @_;
+	
+	$::failure_item_number++;
 	
 	open(SUMMARY, ">>$::raptorbitsdir/summary.csv");
-	print SUMMARY "$category,$subcategory,$severity,$location,$component,$mmp,$phase,$recipe,$file,$line\n";
+	print SUMMARY "$category,$subcategory,$severity,$location,$component,$mmp,$phase,$recipe,$file,$::failure_item_number\n";
 	close(SUMMARY);
 }