Skip to content
Snippets Groups Projects
Commit 9147b20e authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add a little boldness

parent 83d9892b
Branches
Tags
No related merge requests found
......@@ -22,17 +22,22 @@ fi
echo ">>>>> Backend: $BACKEND"
SHTOOL="$SRCDIR/../build/shtool"
TB=`$SHTOOL echo -e "%B"`
TN=`$SHTOOL echo -e "%b"`
for CMD in $SRCDIR/scripts/test*; do
echo ">>>>> Starting `basename $CMD` ..."
echo ">>>>> Starting ${TB}`basename $CMD`${TN} ..."
$CMD $SRCDIR $BACKEND
RC=$?
if test $RC -eq 0 ; then
echo ">>>>> $CMD completed OK."
echo ">>>>> $CMD completed ${TB}OK${TN}."
else
echo ">>>>> $CMD failed (exit $RC)"
echo ">>>>> $CMD ${TB}failed${TN} (exit $RC)"
exit $RC
fi
echo ">>>>> waiting 10 seconds for things to exit"
sleep 10
echo
echo ""
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment