]> granicus.if.org Git - curl/commitdiff
output summary with easy identifyable string prefixes
authorDaniel Stenberg <daniel@haxx.se>
Mon, 20 Jan 2003 15:43:50 +0000 (15:43 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 20 Jan 2003 15:43:50 +0000 (15:43 +0000)
tests/runtests.pl

index 0690d4f09482029b6d49839b4477b5416f1cdac3..46c90350f7b6b06e8cf913be91e91374e8c9e73d 100755 (executable)
@@ -1085,18 +1085,18 @@ for(keys %run) {
 }
 
 if($total) {
-    printf("$ok tests out of $total reported OK: %d%%\n",
+    printf("TESTDONE: $ok tests out of $total reported OK: %d%%\n",
            $ok/$total*100);
 
     if($ok != $total) {
-        print "These test cases failed: $failed\n";
+        print "TESTFAIL: These test cases failed: $failed\n";
     }
 }
 else {
-    print "No tests were performed!\n";
+    print "TESTFAIL: No tests were performed!\n";
 }
 if($skipped) {
-    print "$skipped tests were skipped due to restraints\n";
+    print "TESTINFO: $skipped tests were skipped due to restraints\n";
 }
 if($total && ($ok != $total)) {
     exit 1;