version 1.22.2.1, 2005/01/20 18:04:07
|
version 1.22.2.2, 2005/08/25 05:01:20
|
Line 1
|
Line 1
|
#! /bin/sh |
#! /bin/sh |
# $OpenLDAP: pkg/ldap/tests/scripts/test000-rootdse,v 1.22 2004/05/15 12:35:05 ando Exp $ |
# $OpenLDAP: pkg/ldap/tests/scripts/test000-rootdse,v 1.24 2005/08/20 22:59:34 hallvard Exp $ |
## This work is part of OpenLDAP Software <http://www.openldap.org/>. |
## This work is part of OpenLDAP Software <http://www.openldap.org/>. |
## |
## |
## Copyright 1998-2005 The OpenLDAP Foundation. |
## Copyright 1998-2005 The OpenLDAP Foundation. |
Line 49 if test $RC = 0 ; then
|
Line 49 if test $RC = 0 ; then
|
|
|
fi |
fi |
|
|
|
count=2 |
if test $RC = 0 ; then |
if test $RC = 0 ; then |
if test $MONITORDB = yes -o $MONITORDB = mod ; then |
if test $MONITORDB = yes -o $MONITORDB = mod ; then |
|
count=3 |
echo "Using ldapsearch to retrieve the cn=Monitor..." |
echo "Using ldapsearch to retrieve the cn=Monitor..." |
$LDAPSEARCH -b "cn=Monitor" -s base -h $LOCALHOST -p $PORT1 \ |
$LDAPSEARCH -b "cn=Monitor" -s base -h $LOCALHOST -p $PORT1 \ |
'+extensibleObject' >> $SEARCHOUT 2>&1 |
'+extensibleObject' >> $SEARCHOUT 2>&1 |
Line 67 if test $RC != 0 ; then
|
Line 69 if test $RC != 0 ; then
|
echo ">>>>> Test failed" |
echo ">>>>> Test failed" |
else |
else |
RC=`grep '^dn:' $SEARCHOUT | wc -l` |
RC=`grep '^dn:' $SEARCHOUT | wc -l` |
if test $RC != 3 ; then |
if test $RC != $count ; then |
echo ">>>>> Test failed: expected 3 entries, got" $RC |
echo ">>>>> Test failed: expected $count entries, got" $RC |
RC=1 |
RC=1 |
else |
else |
echo ">>>>> Test succeeded" |
echo ">>>>> Test succeeded" |