]> git.sur5r.net Git - openldap/blobdiff - tests/scripts/test002-populate
Extend TLS/SSL detection for use RSAref if necessary.
[openldap] / tests / scripts / test002-populate
index 4f31092f4800a271b503e2a9f12d0e8a642fe0e0..7852062ba11310a472d26064dc2977f0d8224822 100755 (executable)
@@ -1,14 +1,22 @@
 #!/bin/sh
 
-. scripts/defines.sh
+if [ $# -eq 0 ]; then
+       SRCDIR="."
+else
+       SRCDIR=$1; shift
+fi
+if [ $# -eq 1 ]; then
+       BDB2=$1; shift
+fi
 
+. $SRCDIR/scripts/defines.sh $SRCDIR $BDB2
 
 echo "Cleaning up in $DBDIR..."
 
 rm -f $DBDIR/[!C]*
 
 echo "Starting slapd on TCP/IP port $PORT..."
-$SLAPD -f $CONF -p $PORT -d 1 > $MASTERLOG 2>&1 &
+$SLAPD -f $CONF -p $PORT -d $LVL $TIMING > $MASTERLOG 2>&1 &
 PID=$!
 
 echo "Using ldapsearch to check that slapd is running..."
@@ -45,9 +53,9 @@ if [ $RC != 0 ]; then
 fi
 
 echo "Filtering ldapsearch results..."
-. scripts/acfilter.sh < $SEARCHOUT > $SEARCHFLT
+. $SRCDIR/scripts/acfilter.sh < $SEARCHOUT > $SEARCHFLT
 echo "Filtering original ldif used to create database..."
-. scripts/acfilter.sh < $LDIF > $LDIFFLT
+. $SRCDIR/scripts/acfilter.sh < $LDIF > $LDIFFLT
 echo "Comparing filter output..."
 cmp $SEARCHFLT $LDIFFLT