Francois Gouget : winetest/gather: Show skipped dlls on the index pages.

Alexandre Julliard julliard at winehq.org
Fri Apr 23 15:17:24 CDT 2021


Module: tools
Branch: master
Commit: 1c54a9c253cf9efc9cf00bd0076076a34ddbe58b
URL:    https://source.winehq.org/git/tools.git/?a=commit;h=1c54a9c253cf9efc9cf00bd0076076a34ddbe58b

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Fri Apr 23 11:22:48 2021 +0200

winetest/gather: Show skipped dlls on the index pages.

Sucessful tests are omitted from the index pages except if they skipped
some checks. So it makes sense to also show test units that were skipped
entirely. Note also that their label (skipped instead of 0) makes it
possible to distinguish the two cases.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 winetest/gather | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/winetest/gather b/winetest/gather
index 2a23f0a..fa5525b 100755
--- a/winetest/gather
+++ b/winetest/gather
@@ -505,7 +505,7 @@ foreach my $group (@groups) {
             merge_status( $test_results{$testname}->{$group->{name}}, $report->{$testname} );
         }
         $group->{$testname} = $group_result;
-        if ($group_result->{status} =~ /^(?:missing(?:dll|sxs)|skipped|stub)$/ or
+        if ($group_result->{status} =~ /^(?:missing(?:dll|sxs)|stub)$/ or
             ($group_result->{status} eq "run" and
              $group_result->{errors}->[1] == 0 and
              $group_result->{todos}->[1] == 0 and




More information about the wine-cvs mailing list