mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-18 21:04:45 -05:00
Fix tests
This commit is contained in:
parent
c7a390ee43
commit
fc38e26d74
1 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue