tools/winetest dissect

Jeremy Newman jnewman at wine.codeweavers.com
Tue Feb 27 10:35:27 CST 2007


ChangeSet ID:	30937
CVSROOT:	/opt/cvs-commit
Module name:	tools
Changes by:	jnewman at winehq.org	2007/02/27 10:35:27

Modified files:
	winetest       : dissect 

Log message:
	Paul Vriens <paul.vriens.wine at gmail.com>
	Cater for the new skip method

Patch: http://cvs.winehq.org/patch.py?id=30937

Old revision  New revision  Changes     Path
 1.18          1.19          +4 -0       tools/winetest/dissect

Index: tools/winetest/dissect
diff -u -p tools/winetest/dissect:1.18 tools/winetest/dissect:1.19
--- tools/winetest/dissect:1.18	27 Feb 2007 16:35:27 -0000
+++ tools/winetest/dissect	27 Feb 2007 16:35:27 -0000
@@ -158,6 +158,10 @@ while (<IN>) {
     } elsif (s/^($test: (\d+) tests executed, (\d+) marked as todo, (\d+) failures?\.)\r?$/$1/) {
         <IN>;                   # current test finished
         $result = "$2 $3 $4";
+        goto FINISH;
+    } elsif (s/^($test: (\d+) tests executed \((\d+) marked as todo, (\d+) failures\), (\d+) skipped?\.)\r?$/$1/) {
+        <IN>;                   # current test finished
+        $result = "$2 $3 $4";
       FINISH:
         print SUM "- $unit $test $result $source $rev\n";
         print OUT;



More information about the wine-cvs mailing list