mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 11:09:34 -05:00
Add a little boldness
This commit is contained in:
parent
83d9892bdc
commit
9147b20e9f
1 changed files with 9 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue