openldap/tests/scripts/all

39 lines
634 B
Plaintext
Raw Normal View History

1999-04-21 13:59:01 +08:00
#! /bin/sh
1999-09-02 08:52:43 +08:00
# $OpenLDAP$
1998-08-09 08:43:13 +08:00
# disable LDAP initialization
LDAPNOINIT=true; export LDAPNOINIT
1998-08-09 08:43:13 +08:00
echo ">>>>> Executing all LDAP tests..."
if test $# -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"
if test $# -eq 0 ; then
BACKEND=ldbm
else
BACKEND=$1; shift
fi
echo ">>>>> Backend: $BACKEND"
for CMD in $SRCDIR/scripts/test*; do
echo ">>>>> Starting `basename $CMD` ..."
$CMD $SRCDIR $BACKEND
1998-08-09 08:43:13 +08:00
RC=$?
1999-04-21 13:59:01 +08:00
if test $RC -eq 0 ; then
1998-08-09 08:43:13 +08:00
echo ">>>>> $CMD completed OK."
else
echo ">>>>> $CMD failed (exit $RC)"
exit $RC
fi
1999-08-04 05:46:44 +08:00
echo ">>>>> waiting 10 seconds for things to exit"
sleep 10
1998-08-09 08:43:13 +08:00
echo
done