Skip to content
Snippets Groups Projects
Commit 6d9e9e6c authored by Ondřej Kuzník's avatar Ondřej Kuzník
Browse files

ITS#6207 Print out test timings

parent 720057f4
No related branches found
No related tags found
No related merge requests found
......@@ -254,8 +254,10 @@ while [ $COUNTER -le $LOOP ]; do
if [ $LOOP -gt 1 ]; then
echo "Running $COUNTER of $LOOP iterations"
fi
START=`date +%s`
$SCRIPT $*
RC=$?
END=`date +%s`
if test $CLEAN = yes ; then
echo "Cleaning up test run directory from this run."
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment