ChangeSet ID: 31302 CVSROOT: /opt/cvs-commit Module name: tools Changes by: jnewman@winehq.org 2007/08/03 10:10:38
Modified files: winetest : gather
Log message: Paul Vriens paul.vriens.wine@gmail.com Skip tests for which the dll is missing
Patch: http://cvs.winehq.org/patch.py?id=31302
Old revision New revision Changes Path 1.20 1.21 +4 -0 tools/winetest/gather
Index: tools/winetest/gather diff -u -p tools/winetest/gather:1.20 tools/winetest/gather:1.21 --- tools/winetest/gather:1.20 3 Aug 2007 15:10:38 -0000 +++ tools/winetest/gather 3 Aug 2007 15:10:38 -0000 @@ -96,6 +96,10 @@ foreach my $file (glob "$datadir/$build/ my ($digest, $unit, $test, $count, $todo, $error, $skipped, $source, $rev) = split; my $testname = "$unit:$test"; + if ($test =~ /_dll_missing/) { + # Skip these tests for now + next; + } $testref->{results}->{$testname} = [$count, $todo, $error, $skipped]; $alltests{$testname} = "http://cvs.winehq.org/cvsweb/wine/$source" . ($rev ne "-"?"#rev$rev":"") unless exists $alltests{$testname};