summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-01-03 08:22:05 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-01-03 08:22:05 +0000
commitb35c26b751f3dff00a03184b72f024e87742c48c (patch)
tree75902c824f8f1dde02971a4388b16e6d1b97ee9f
parent128f34163581686b147db5e1c084c31d617fbe2c (diff)
downloadgnurl-b35c26b751f3dff00a03184b72f024e87742c48c.tar.gz
gnurl-b35c26b751f3dff00a03184b72f024e87742c48c.tar.bz2
gnurl-b35c26b751f3dff00a03184b72f024e87742c48c.zip
added a little percentage for "ok coverage"
-rwxr-xr-xtests/runtests.pl3
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";