openldap/tests/scripts/all

26 lines
394 B
Plaintext
Raw Normal View History

1998-08-09 08:43:13 +08:00
#!/bin/sh
echo ">>>>> Executing all LDAP tests..."
if [ $# -eq 0 ]; then
SCRIPTDIR="."
else
SCRIPTDIR=$1; shift
fi
for i in $SCRIPTDIR/test*; do
CMD=$i $*
echo ">>>>> Starting $CMD ..."
$CMD
RC=$?
if [ $RC -eq 0 ]; then
echo ">>>>> $CMD completed OK."
else
echo ">>>>> $CMD failed (exit $RC)"
exit $RC
fi
echo ">>>>> waiting 5 seconds for things to exit"
sleep 5
1998-08-09 08:43:13 +08:00
echo
done