ChangeSet ID: 30962 CVSROOT: /opt/cvs-commit Module name: tools Changes by: jnewman(a)winehq.org 2007/03/13 11:11:28 Modified files: winetest : dissect Log message: Paul Vriens <paul.vriens.wine(a)gmail.com> Get rid of fileversion-3 checks Patch: http://cvs.winehq.org/patch.py?id=30962 Old revision New revision Changes Path 1.22 1.23 +0 -6 tools/winetest/dissect Index: tools/winetest/dissect diff -u -p tools/winetest/dissect:1.22 tools/winetest/dissect:1.23 --- tools/winetest/dissect:1.22 13 Mar 2007 16:11:28 -0000 +++ tools/winetest/dissect 13 Mar 2007 16:11:28 -0000 @@ -153,12 +153,6 @@ while (<IN>) { or mydie "no start line:$.: $_"; ($unit,$test,$source,$rev) = ($1,$2,$3,$4); open OUT, ">:raw", $tmpfile or mydie "can't open $tmpfile: $!\n"; - } elsif (s/^(.*$test.*: (\d+) tests executed, (\d+) marked as todo, (\d+) failures?\.)\r?$/$1/) { - $lines++; - $total += $2; - $todo += $3; - $failed += $4; - print OUT; } elsif (s/^(.*$test.*: (\d+) tests executed \((\d+) marked as todo, (\d+) failures?\), (\d+) skipped\.)\r?$/$1/) { $lines++; $total += $2;