openldap/tests/scripts/all

27 lines
441 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
SRCDIR="."
1998-08-09 08:43:13 +08:00
else
SRCDIR=$1; shift
1998-08-09 08:43:13 +08:00
fi
echo ">>>>> Test Directory: $SRCDIR"
for CMD in $SRCDIR/scripts/test*; do
echo ">>>>> Starting `basename $CMD` ..."
$CMD $SRCDIR
1998-08-09 08:43:13 +08:00
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