From: Dave Mitchell Date: Wed, 18 May 2005 12:39:22 +0000 (+0000) Subject: make t/TEST print summary times consistently to two decimal places X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f47304e935f606e534d07025226f74138a95070d;p=p5sagit%2Fp5-mst-13.2.git make t/TEST print summary times consistently to two decimal places p4raw-id: //depot/perl@24498 --- diff --git a/t/TEST b/t/TEST index f724ecd..aad1660 100755 --- a/t/TEST +++ b/t/TEST @@ -621,7 +621,7 @@ SHRDLU_5 } } my ($user,$sys,$cuser,$csys) = times; - print sprintf("u=%g s=%g cu=%g cs=%g scripts=%d tests=%d\n", + print sprintf("u=%.2f s=%.2f cu=%.2f cs=%.2f scripts=%d tests=%d\n", $user,$sys,$cuser,$csys,$tested_files,$totmax); if ($ENV{PERL_VALGRIND}) { my $s = $valgrind == 1 ? '' : 's';