Skip to content
Snippets Groups Projects
Commit e6aa83bf authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

Revert "ITS#9282 Extend test to cover the second issue fixed"

This reverts commit 9f8a408c.

It unfortunately relies on logging only available in 2.5 and later.
parent 9f8a408c
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ while [ $n -le $MMR ]; do
CFDIR=${XDIR}$n/slapd.d
echo "Starting provider slapd on TCP/IP URI $MYURI"
$SLAPD -F $CFDIR -h $MYURI -d $LVL -d sync $TIMING > $MYLOG 2>&1 &
$SLAPD -F $CFDIR -h $MYURI -d $LVL $TIMING > $MYLOG 2>&1 &
PID=$!
if test $WAIT != 0 ; then
......@@ -248,16 +248,6 @@ if test $? != 0 ; then
exit 1
fi
echo "Checking provider 2 sent the right cookie..."
grep "starting refresh.*csn=.*#002#.*" $LOG2 >/dev/null 2>&1
RC=$?
if test $RC != 0 ; then
echo "Provider 2 did not send its CSN in the cookie"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
exit $RC
fi
test $KILLSERVERS != no && kill -HUP $KILLPIDS
echo ">>>>> Test succeeded"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment