From: Kurt Zeilenga Date: Thu, 18 Dec 2003 01:07:09 +0000 (+0000) Subject: Fix tests X-Git-Tag: OPENLDAP_REL_ENG_2_1_MP~153 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fc38e26d74050f9773e7944ccc009516ea0dab55;p=openldap Fix tests --- diff --git a/tests/scripts/test020-proxycache b/tests/scripts/test020-proxycache index ddd294e9a4..7ad5bcea2e 100755 --- a/tests/scripts/test020-proxycache +++ b/tests/scripts/test020-proxycache @@ -180,7 +180,7 @@ CACHED=`grep CACHEABLE $LOG2 | awk '{ printf "1" }'` -if test $CACHEABILITY = $CACHED ; then +if test "$CACHEABILITY" = "$CACHED" ; then echo "Successfully verified cacheability" else echo "Error in verifying cacheability" @@ -250,7 +250,7 @@ ANSWERED=`grep ANSWERABLE $LOG2 | awk '{ test $KILLSERVERS != no && kill -HUP $KILLPIDS -if test $ANSWERABILITY = $ANSWERED ; then +if test "$ANSWERABILITY" = "$ANSWERED" ; then echo "Successfully verified answerability" else echo "Error in verifying answerability"