Francois Gouget : winetest/gather: Link 'test list' failures to the test's version page.
Module: tools Branch: master Commit: 79b8c4e42f40f7d9983779bff372b7056122ccf7 URL: https://source.winehq.org/git/tools.git/?a=commit;h=79b8c4e42f40f7d9983779bf... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Thu Jul 1 19:26:08 2021 +0200 winetest/gather: Link 'test list' failures to the test's version page. Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- winetest/gather | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/winetest/gather b/winetest/gather index e000777..1e9b2da 100755 --- a/winetest/gather +++ b/winetest/gather @@ -693,6 +693,12 @@ sub singletest($$$) { { $href = "$report->{dir}/$testname.html"; } + elsif (-r "$builddir/$report->{dir}/version.html") + { + my $dll = $testname; + $dll =~ s/:.*//; + $href = "$report->{dir}/version.html#$dll"; + } else { $href="";
participants (1)
-
Alexandre Julliard