From: Pierangelo Masarati Date: Sat, 21 Feb 2009 15:34:12 +0000 (+0000) Subject: make test056 back-bdb independent X-Git-Tag: ACLCHECK_0~793 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=136169008331b64d666e1247397db6fc34b05b1e;p=openldap make test056 back-bdb independent --- diff --git a/tests/scripts/test056-monitor b/tests/scripts/test056-monitor index 35ae2077a7..2998c7c5ca 100755 --- a/tests/scripts/test056-monitor +++ b/tests/scripts/test056-monitor @@ -91,8 +91,18 @@ fi echo "Filtering ldapsearch results..." . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT +TMPMONITOROUT2=$MONITOROUT2 +case $BACKEND in +bdb|hdb) + ;; +*) + TMPMONITOROUT2=$TESTDIR/monitor2.out + grep -v "olmBDB" $MONITOROUT2 > $TMPMONITOROUT2 + ;; +esac + echo "Comparing filter output..." -$CMP $SEARCHFLT $MONITOROUT2 > $CMPOUT +$CMP $SEARCHFLT $TMPMONITOROUT2 > $CMPOUT if test $? != 0 ; then echo "comparison failed - database monitor output is not correct"