summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-05-07 12:23:40 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-05-07 12:23:40 +0200
commitcad1f46ce3b4c3483ee14903c7f06aace11deef0 (patch)
treee7e5a58506d449b8ce59cd3c45e3189416a9ca3c
parentd1ef10b1d3ccb3d4cfcae163568ce09d9f48c921 (diff)
downloadcurl-cad1f46ce3b4c3483ee14903c7f06aace11deef0.tar.gz
runtests: show elapsed test time with higher precision (ms)
-rwxr-xr-xtests/runtests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index a136ee062..fd419c4e2 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -4473,7 +4473,7 @@ sub singletest {
my $duration = sprintf("duration: %02d:%02d",
$sofar/60, $sofar%60);
if(!$automakestyle) {
- logmsg sprintf("OK (%-3d out of %-3d, %s, took %.1fs, %s)\n",
+ logmsg sprintf("OK (%-3d out of %-3d, %s, took %.3fs, %s)\n",
$count, $total, $left, $took, $duration);
}
else {