ITS#6207 Log timings for lloadd tests

This commit is contained in:
Ondřej Kuzník 2021-04-21 13:27:31 +01:00 committed by Quanah Gibson-Mount
parent de0caafe96
commit f9b5163670

View File

@ -60,12 +60,15 @@ EOF
BCMD=`basename $CMD`
if [ -x "$CMD" ]; then
echo ">>>>> Starting ${TB}$BCMD${TN} for $BACKEND..."
START=`date +%s`
$CMD
RC=$?
END=`date +%s`
if test $RC -eq 0 ; then
echo ">>>>> $BCMD completed ${TB}OK${TN} for $BACKEND."
echo ">>>>> $BCMD completed ${TB}OK${TN} for $BACKEND after $(( $END - $START )) seconds."
else
echo ">>>>> $BCMD ${TB}failed${TN} for $BACKEND"
echo ">>>>> $BCMD ${TB}failed${TN} for $BACKEND after $(( $END - $START )) seconds"
FAILCOUNT=`expr $FAILCOUNT + 1`
if [ -n "$NOEXIT" ]; then