diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/canonical-benchmarks.bash | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/canonical-benchmarks.bash b/tests/canonical-benchmarks.bash index b7c2d38..1a5bf3a 100755 --- a/tests/canonical-benchmarks.bash +++ b/tests/canonical-benchmarks.bash @@ -20,8 +20,13 @@ fi # cd to TESTDIR cd "$1" +# Execute command, discard all stdout output, print elapsed time +# (to stderr, unfortunately). function etime { - LC_ALL=C /usr/bin/time -f %e 2>&1 $@ > /dev/null + # Make the bash builtin "time" print out only the elapse wall clock + # seconds + TIMEFORMAT=%R + time "$@" > /dev/null } echo -n "WRITE: " |