diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-01-20 15:43:50 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-01-20 15:43:50 +0000 |
commit | 2ac52705c66ce03b497581b9c524cd9e277aa0e8 (patch) | |
tree | 7fc61f092ef3b1f1e30534a5dcd8b2f18051d7a3 | |
parent | d0eb56dd9774f469112fa03020b1732a96d64ef6 (diff) |
output summary with easy identifyable string prefixes
-rwxr-xr-x | tests/runtests.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 0690d4f09..46c90350f 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -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; |