diff -r 978ef35b4e5f -r b76adfbc6648 uh_parser/RaptorCommon.pm --- 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); }