nicer reporting of disabled tests
authorDaniel Stenberg <daniel@haxx.se>
Wed, 13 Sep 2006 10:48:03 +0000 (10:48 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 13 Sep 2006 10:48:03 +0000 (10:48 +0000)
tests/runtests.pl

index 121a4d8..5866844 100755 (executable)
@@ -2142,13 +2142,16 @@ if ( $TESTCASES eq "all") {
         $_ =~ s/[a-z\/\.]*//g;
     }
     # the the numbers from low to high
-    for(sort { $a <=> $b } @cmds) {
-        if($dis{$_}) {
+    foreach my $n (sort { $a <=> $b } @cmds) {
+        if($dis{$n}) {
             # skip disabled test cases
-            print STDERR "runtests.pl: disabling test $_\n";
+            my $why = "mentioned in DISABLED";
+            $skipped++;
+            $skipped{$why}++;
+            $teststat[$n]=$why; # store reason for this test case
             next;
         }
-        $TESTCASES .= " $_";
+        $TESTCASES .= " $n";
     }
 }