diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-05-07 12:23:40 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-05-07 12:23:40 +0200 |
commit | cad1f46ce3b4c3483ee14903c7f06aace11deef0 (patch) | |
tree | e7e5a58506d449b8ce59cd3c45e3189416a9ca3c | |
parent | d1ef10b1d3ccb3d4cfcae163568ce09d9f48c921 (diff) |
runtests: show elapsed test time with higher precision (ms)
-rwxr-xr-x | tests/runtests.pl | 2 |
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 { |