diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-01-03 08:22:05 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-01-03 08:22:05 +0000 |
commit | b35c26b751f3dff00a03184b72f024e87742c48c (patch) | |
tree | 75902c824f8f1dde02971a4388b16e6d1b97ee9f | |
parent | 128f34163581686b147db5e1c084c31d617fbe2c (diff) |
added a little percentage for "ok coverage"
-rwxr-xr-x | tests/runtests.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 95fc2f250..dc695dbe9 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -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"; |