From: Daniel Stenberg Date: Thu, 3 Jan 2002 08:22:05 +0000 (+0000) Subject: added a little percentage for "ok coverage" X-Git-Tag: curl-7_9_3-pre1~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b35c26b751f3dff00a03184b72f024e87742c48c;p=thirdparty%2Fcurl.git added a little percentage for "ok coverage" --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 95fc2f250f..dc695dbe92 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";