Skip to content
Snippets Groups Projects
Commit f71957c4 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#5810

parent a56c7ffc
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@ OpenLDAP 2.4.18 Engineering
Fixed tools resource leaks (ITS#6145)
Fixed contrib/autogroup with RE24 (ITS#6227)
Build Environment
Tests note which backend is being tested (ITS#5810)
Fixed test056-monitor with custom ports (ITS#6213)
OpenLDAP 2.4.17 Release (2009/07/13)
......
......@@ -225,7 +225,7 @@ fi
# disable LDAP initialization
LDAPNOINIT=true; export LDAPNOINIT
echo "Running ${SCRIPT}..."
echo "Running ${SCRIPT} for ${BACKEND}..."
while [ $COUNTER -le $LOOP ]; do
if [ $LOOP -gt 1 ]; then
echo "Running $COUNTER of $LOOP iterations"
......
......@@ -51,13 +51,13 @@ for CMD in $SRCDIR/scripts/test*; do
EOF
fi
echo ">>>>> Starting ${TB}`basename $CMD`${TN} ..."
echo ">>>>> Starting ${TB}`basename $CMD`${TN} for $BACKEND..."
$CMD
RC=$?
if test $RC -eq 0 ; then
echo ">>>>> $CMD completed ${TB}OK${TN}."
echo ">>>>> $CMD completed ${TB}OK${TN} for $BACKEND."
else
echo ">>>>> $CMD ${TB}failed${TN} (exit $RC)"
echo ">>>>> $CMD ${TB}failed${TN} for $BACKEND (exit $RC)"
exit $RC
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment