# HG changeset patch # User dario.sestito@v800052.ad-sfpd.intra # Date 1271076816 -3600 # Node ID a5e5d79cd09afca91d00948c65205410a33defbd # Parent 94716c32894109086f5f84168e1936b34ee5a512 Add number of missing files to major failures count diff -r 94716c328941 -r a5e5d79cd09a common/tools/brag/uh2brag.pl --- a/common/tools/brag/uh2brag.pl Fri Apr 09 10:34:32 2010 +0100 +++ b/common/tools/brag/uh2brag.pl Mon Apr 12 13:53:36 2010 +0100 @@ -43,10 +43,11 @@ { while (my $line = ) { - if ($line =~ m{.*(\d+)(\d+)(\d+)(\d+)}) + if ($line =~ m{.*(\d+)(\d+)(\d+)(\d+)((\d+))?}) { $criticals += $1 if ($1); $majors += $2 if ($2); + $majors += $6 if ($6); # add number of missing files to majors $minors += $3 if ($3); $unknowns += $4 if ($4); }