Module: tools Branch: master Commit: fa935b5fa13ce47efc02950615cc0a1579552ede URL: http://source.winehq.org/git/tools.git/?a=commit;h=fa935b5fa13ce47efc0295061...
Author: Francois Gouget fgouget@codeweavers.com Date: Mon Mar 20 23:59:35 2017 +0100
winetest: Make it easier to grab the raw report.
It is now accessible from any test result page. Previously one would have had to first go to the huge full report page and scroll to the top.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
winetest/dissect | 1 + 1 file changed, 1 insertion(+)
diff --git a/winetest/dissect b/winetest/dissect index a4f3f99..c2c453c 100755 --- a/winetest/dissect +++ b/winetest/dissect @@ -445,6 +445,7 @@ for (my $i = 0; $i <= $#boxes; $i++) print FILE $boxes[$i]->{next} ? "<a href="./$boxes[$i]->{next}.html">next</a> | " : "next | "; print FILE "<a href="version.html">info</a> | "; printf FILE "<a href="report.html%s">full report</a> | ", $i ? "#$boxes[$i]->{id}" : ""; + print FILE "<a href="report">raw report</a> | "; print FILE "<a href="..">summary</a> | <a href="../..">index</a></div>\n";
printf FILE "<div id="%s" class="%s">\n", $boxes[$i]->{id}, $boxes[$i]->{class};