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

Francois Gouget fgouget at codeweavers.com
Fri Apr 23 04:22:48 CDT 2021


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>
---
 winetest/gather | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/winetest/gather b/winetest/gather
index 2a23f0a59..fa5525b88 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
-- 
2.20.1



More information about the wine-devel mailing list