]> git.sur5r.net Git - openldap/blob - tests/scripts/all
Replace get_filter generation of fstr with filter2bv().
[openldap] / tests / scripts / all
1 #! /bin/sh
2 # $OpenLDAP$
3
4 # disable LDAP initialization
5 LDAPNOINIT=true; export LDAPNOINIT
6
7 echo ">>>>> Executing all LDAP tests..."
8
9 if test $# -eq 0 ; then
10         SRCDIR="."
11 else
12         SRCDIR=$1; shift
13 fi
14
15 echo ">>>>> Test Directory: $SRCDIR"
16
17 if test $# -eq 0 ; then
18         BACKEND=bdb
19 else
20         BACKEND=$1; shift
21 fi
22
23 echo ">>>>> Backend: $BACKEND"
24
25 SHTOOL="$SRCDIR/../build/shtool"
26
27 TB=`$SHTOOL echo -e "%B"`
28 TN=`$SHTOOL echo -e "%b"`
29
30 for CMD in $SRCDIR/scripts/test*; do
31         echo ">>>>> Starting ${TB}`basename $CMD`${TN} ..."
32         $CMD $SRCDIR $BACKEND
33         RC=$?
34         if test $RC -eq 0 ; then
35                 echo ">>>>> $CMD completed ${TB}OK${TN}."
36         else
37                 echo ">>>>> $CMD ${TB}failed${TN} (exit $RC)"
38                 exit $RC
39         fi
40         echo ">>>>> waiting 10 seconds for things to exit"
41         sleep 10
42         echo ""
43 done