mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
add anonymous binding
This commit is contained in:
parent
cfa9178822
commit
7ec2c64e73
2 changed files with 10 additions and 1 deletions
|
|
@ -192,6 +192,8 @@ done
|
|||
for f in $TESTDIR/$DATADIR/do_bind.* ; do
|
||||
echo "cn=Foo,ou=Meta,$METABASEDN" >> $f
|
||||
echo "bar" >> $f
|
||||
echo "" >> $f
|
||||
echo "" >> $f
|
||||
done
|
||||
|
||||
echo "Using tester for concurrent server access..."
|
||||
|
|
|
|||
|
|
@ -32,6 +32,10 @@ if test x$TESTLOOPS = x ; then
|
|||
TESTLOOPS=50
|
||||
fi
|
||||
|
||||
if test x$TESTOLOOPS = x ; then
|
||||
TESTOLOOPS=1
|
||||
fi
|
||||
|
||||
rm -rf $TESTDIR
|
||||
|
||||
mkdir -p $TESTDIR $DBDIR1 $DBDIR2
|
||||
|
|
@ -169,11 +173,14 @@ done
|
|||
for f in $TESTDIR/$DATADIR/do_bind.* ; do
|
||||
echo "cn=Foo,ou=Meta,$METABASEDN" >> $f
|
||||
echo "bar" >> $f
|
||||
echo "" >> $f
|
||||
echo "" >> $f
|
||||
done
|
||||
|
||||
echo "Using tester for concurrent server access..."
|
||||
$SLAPDTESTER -P "$PROGDIR" -d "$TESTDIR/$DATADIR" -h $LOCALHOST -p $PORT3 \
|
||||
-D "cn=Manager,$METABASEDN" -w $PASSWD -l $TESTLOOPS -r 20 -FF
|
||||
-D "cn=Manager,$METABASEDN" -w $PASSWD \
|
||||
-l $TESTLOOPS -L $TESTOLOOPS -r 20 -FF
|
||||
RC=$?
|
||||
|
||||
if test $RC != 0 ; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue