]> git.sur5r.net Git - openldap/blob - tests/scripts/all
More streamlining.
[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 if test $# -eq 0 ; then
26         MONITOR=no
27 else
28         MONITOR=$1; shift
29 fi
30
31 SHTOOL="$SRCDIR/../build/shtool"
32
33 TB=`$SHTOOL echo -e "%B"`
34 TN=`$SHTOOL echo -e "%b"`
35
36 for CMD in $SRCDIR/scripts/test*; do
37         echo ">>>>> Starting ${TB}`basename $CMD`${TN} ..."
38         $CMD $SRCDIR $BACKEND $MONITOR
39         RC=$?
40         if test $RC -eq 0 ; then
41                 echo ">>>>> $CMD completed ${TB}OK${TN}."
42         else
43                 echo ">>>>> $CMD ${TB}failed${TN} (exit $RC)"
44                 exit $RC
45         fi
46         echo ">>>>> waiting 10 seconds for things to exit"
47         sleep 10
48         echo ""
49 done