]> git.sur5r.net Git - openldap/blobdiff - tests/scripts/all
Extend TLS/SSL detection for use RSAref if necessary.
[openldap] / tests / scripts / all
index 2af48bcc4d88084e6107ebec498c5417bcd33b24..b9f30d52bb7e4e9a4c1db97dc70770fb9b7d82f8 100755 (executable)
@@ -5,7 +5,7 @@ LDAPNOINIT=true; export LDAPNOINIT
 
 echo ">>>>> Executing all LDAP tests..."
 
-if [ $# -eq 0 ]; then
+if test $# -eq 0 ; then
        SRCDIR="."
 else
        SRCDIR=$1; shift
@@ -13,9 +13,17 @@ 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
+       $CMD $SRCDIR $BACKEND
        RC=$?
        if [ $RC -eq 0 ]; then
                echo ">>>>> $CMD completed OK."