Francois Gouget : winetest: Link individual group results straight to the relevant line in the platform table .

Alexandre Julliard julliard at winehq.org
Mon Mar 17 10:57:09 CDT 2008


Module: tools
Branch: master
Commit: e8948ce5c6604cef381e8b4a59a7a7efb48d2c81
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=e8948ce5c6604cef381e8b4a59a7a7efb48d2c81

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Mar 17 12:17:43 2008 +0100

winetest: Link individual group results straight to the relevant line in the platform table.

---

 winetest/gather |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/winetest/gather b/winetest/gather
index 8ec43bd..5c9d393 100755
--- a/winetest/gather
+++ b/winetest/gather
@@ -372,7 +372,7 @@ EOF
         } elsif (@{$group->{reports}} == 1) {
             singletest($group->{reports}->[0], $testname, $group->{name});
         } else {
-            my $href = "href=\"#group_$group->{name}\"";
+            my $href = "href=\"#group_$group->{name}:$testname\"";
             if (exists $group->{extrema}->{$testname}) {
                 my ($min,$max) = @{$group->{extrema}->{$testname}};
                 my $todos = (exists $group->{todo}->{$testname})?"todo_":"";
@@ -450,7 +450,7 @@ EOF
         print OUT <<"EOF";
     <tr>
       <td class="test">
-        <a href="$alltests{$testname}">$testname</a></td>
+        <a href="$alltests{$testname}" name="group_$group->{name}:$testname">$testname</a></td>
 EOF
         foreach my $report (@{$group->{reports}}) {
             singletest($report, $testname, $group->{name});




More information about the wine-cvs mailing list