]> git.sur5r.net Git - openldap/blobdiff - tests/scripts/passwd-search
ITS#3671 must release conn->c_mutex to allow blocked writers to exit
[openldap] / tests / scripts / passwd-search
index 22b940f090d0a5e47e0f98362f63b263b105c388..6439908d002a8b884f8dd2299243728bf4fd9868 100755 (executable)
@@ -1,5 +1,17 @@
 #! /bin/sh
 # $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2005 The OpenLDAP Foundation.
+## All rights reserved.
+##
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
+##
+## A copy of this license is available in the file LICENSE in the
+## top-level directory of the distribution or, alternatively, at
+## <http://www.OpenLDAP.org/license.html>.
 
 if test $# -eq 0 ; then
        SRCDIR="."
@@ -23,7 +35,7 @@ PID=$!
 
 echo "Testing slapd searching..."
 for i in 0 1 2 3 4 5; do
-       $LDAPSEARCH -L -b "$BASEDN" -h localhost -p $PORT \
+       $LDAPSEARCH -L -b "$BASEDN" -h $LOCALHOST -p $PORT \
                'objectclass=*' > /dev/null 2>&1
        RC=$?
        if test $RC = 1 ; then
@@ -41,7 +53,7 @@ fi
 cat /dev/null > $TESTOUT
 
 echo "Testing base suffix searching..."
-$LDAPSEARCH -L -S "" -b "$BASEDN" -s base -h localhost -p $PORT \
+$LDAPSEARCH -L -S "" -b "$BASEDN" -s base -h $LOCALHOST -p $PORT \
        '(objectclass=*)' >> $TESTOUT 2>&1
 if test $RC != 0 ; then
        echo "ldapsearch failed!"
@@ -52,7 +64,7 @@ fi
 echo " ------------ " >> $TESTOUT
 
 echo "Testing user searching..."
-$LDAPSEARCH -L -S "" -b "uid=root,$BASEDN" -s base -h localhost -p $PORT \
+$LDAPSEARCH -L -S "" -b "uid=root,$BASEDN" -s base -h $LOCALHOST -p $PORT \
        '(objectclass=*)' >> $TESTOUT 2>&1
 if test $RC != 0 ; then
        echo "ldapsearch failed!"
@@ -63,7 +75,7 @@ fi
 echo " ------------ " >> $TESTOUT
 
 echo "Testing exact searching..."
-$LDAPSEARCH -L -S "" -b "$BASEDN" -h localhost -p $PORT \
+$LDAPSEARCH -L -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT \
        '(uid=root)' >> $TESTOUT 2>&1
 if test $RC != 0 ; then
        echo "ldapsearch failed!"
@@ -74,7 +86,7 @@ fi
 echo " ------------ " >> $TESTOUT
 
 echo "Testing OR searching..."
-$LDAPSEARCH -L -S "" -b "$BASEDN" -h localhost -p $PORT \
+$LDAPSEARCH -L -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT \
        '(|(objectclass=person)(cn=root))' >> $TESTOUT 2>&1
 if test $RC != 0 ; then
        echo "ldapsearch failed!"
@@ -85,7 +97,7 @@ fi
 echo " ------------ " >> $TESTOUT
 
 echo "Testing AND searching..."
-$LDAPSEARCH -L -S "" -b "$BASEDN" -h localhost -p $PORT \
+$LDAPSEARCH -L -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT \
        '(&(objectclass=person)(cn=root))' >> $TESTOUT 2>&1
 if test $RC != 0 ; then
        echo "ldapsearch failed!"