1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 15:48:49 -05:00

added a little percentage for "ok coverage"

This commit is contained in:
Daniel Stenberg 2002-01-03 08:22:05 +00:00
parent 128f341635
commit b35c26b751

View File

@ -912,7 +912,8 @@ for(keys %run) {
}
if($total) {
print "$ok tests out of $total reported OK\n";
printf("$ok tests out of $total reported OK: %d%%\n",
$ok/$total*100);
if($ok != $total) {
print "These test cases failed: $failed\n";