ChangeSet ID: 31329 CVSROOT: /opt/cvs-commit Module name: tools Changes by: jnewman@winehq.org 2007/08/16 17:02:07
Modified files: winetest : gather
Log message: Paul Vriens paul.vriens.wine@gmail.com Leave out empty groups on results page
Patch: http://cvs.winehq.org/patch.py?id=31329
Old revision New revision Changes Path 1.26 1.27 +1 -3 tools/winetest/gather
Index: tools/winetest/gather diff -u -p tools/winetest/gather:1.26 tools/winetest/gather:1.27 --- tools/winetest/gather:1.26 16 Aug 2007 22: 2: 7 -0000 +++ tools/winetest/gather 16 Aug 2007 22: 2: 7 -0000 @@ -173,8 +173,6 @@ foreach (@groups) { <a href="$test->{dir}/report">[file]</a></small></th> EOF } - } else { - $header .= " <th>$_->{name}</th>\n"; } } chop $header; @@ -290,7 +288,7 @@ foreach my $testname (sort keys %alltest EOF foreach my $group (@groups) { if (!exists $group->{tests}) { - print OUT " <td class="note">.</td>\n"; + # Do nothing } elsif (@{$group->{tests}} == 1) { singletest ($group->{tests}->[0], $testname, $group->{name}); } else {