X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=tests%2Fscripts%2Ftest016-subref;h=f58179388d652ef4d0083fdc4079e0827e7289fb;hb=a5765f1785653cabe18419e710c5b2bf7723b892;hp=f4cb51d5132c4e4f3d453ae09ed048394cb794fc;hpb=fcf97e84486e1159c0f57114e3b130cf49d7f89d;p=openldap diff --git a/tests/scripts/test016-subref b/tests/scripts/test016-subref index f4cb51d513..f58179388d 100755 --- a/tests/scripts/test016-subref +++ b/tests/scripts/test016-subref @@ -2,7 +2,7 @@ # $OpenLDAP$ ## This work is part of OpenLDAP Software . ## -## Copyright 1998-2009 The OpenLDAP Foundation. +## Copyright 1998-2012 The OpenLDAP Foundation. ## All rights reserved. ## ## Redistribution and use in source and binary forms, with or without @@ -14,6 +14,7 @@ ## . RCODE=10 +test $BACKEND = null && RCODE=0 echo "running defines.sh" . $SRCDIR/scripts/defines.sh @@ -87,7 +88,7 @@ RC=$? if test $RC != $RCODE ; then echo "ldapsearch: unexpected result ($RC)! (referral expected)" test $KILLSERVERS != no && kill -HUP $KILLPIDS - exit $RC + exit 1 fi XREFDN="$REFDN" @@ -125,7 +126,7 @@ RC=$? if test $RC != $RCODE ; then echo "ldapsearch: unexpected result ($RC)! (referral expected)" test $KILLSERVERS != no && kill -HUP $KILLPIDS - exit $RC + exit 1 fi echo "Testing one-level searching at $XREFDN..." @@ -134,7 +135,7 @@ RC=$? if test $RC != $RCODE ; then echo "ldapsearch: unexpected result ($RC)! (referral expected)" test $KILLSERVERS != no && kill -HUP $KILLPIDS - exit $RC + exit 1 fi echo "Testing subtree searching at $XREFDN..." @@ -143,7 +144,7 @@ RC=$? if test $RC != $RCODE ; then echo "ldapsearch: unexpected result ($RC)! (referral expected)" test $KILLSERVERS != no && kill -HUP $KILLPIDS - exit $RC + exit 1 fi XREFDN="uid=xxx,o=abc,$REFDN" @@ -153,7 +154,7 @@ RC=$? if test $RC != $RCODE ; then echo "ldapsearch: unexpected result ($RC)! (referral expected)" test $KILLSERVERS != no && kill -HUP $KILLPIDS - exit $RC + exit 1 fi echo "Testing one-level searching at $XREFDN..." @@ -162,7 +163,7 @@ RC=$? if test $RC != $RCODE ; then echo "ldapsearch: unexpected result ($RC)! (referral expected)" test $KILLSERVERS != no && kill -HUP $KILLPIDS - exit $RC + exit 1 fi echo "Testing subtree searching at $XREFDN..." @@ -171,16 +172,16 @@ RC=$? if test $RC != $RCODE ; then echo "ldapsearch: unexpected result ($RC)! (referral expected)" test $KILLSERVERS != no && kill -HUP $KILLPIDS - exit $RC + exit 1 fi test $KILLSERVERS != no && kill -HUP $KILLPIDS LDIF=$SEARCHOUTMASTER echo "Filtering ldapsearch results..." -. $LDIFFILTER < $SEARCHOUT > $SEARCHFLT +$LDIFFILTER < $SEARCHOUT > $SEARCHFLT echo "Filtering expected LDIF for comparison..." -. $LDIFFILTER < $REFERRALOUT > $LDIFFLT +$LDIFFILTER < $REFERRALOUT > $LDIFFLT echo "Comparing filter output..." $CMP $SEARCHFLT $LDIFFLT > $CMPOUT