ITS#8753 - Fix reference to ldaps to be StartTLS to accurately reflect what the test is doing

This commit is contained in:
Quanah Gibson-Mount 2020-07-30 15:26:06 +00:00
parent 138c492696
commit 63d6f680ba

View file

@ -143,7 +143,7 @@ if test -n "$TLS_PEERKEY"; then
-ZZ -b "" -s base -H $URIP1 '@extensibleObject' > $SEARCHOUT 2>&1
RC=$?
if test $RC != 0 ; then
echo "ldapsearch (ldaps) failed ($RC)!"
echo "ldapsearch (StartTLS) failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
exit $RC
else
@ -160,7 +160,7 @@ if test -n "$TLS_PEERKEY_HASHED_FAIL"; then
-ZZ -b "" -s base -H $URIP1 '@extensibleObject' > $SEARCHOUT 2>&1
RC=$?
if test $RC = 0 ; then
echo "ldapsearch (ldaps) succeeded when it should have failed($RC)!"
echo "ldapsearch (StartTLS) succeeded when it should have failed($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
exit 1
else
@ -177,7 +177,7 @@ if test -n "$TLS_PEERKEY_HASHED"; then
-ZZ -b "" -s base -H $URIP1 '@extensibleObject' > $SEARCHOUT 2>&1
RC=$?
if test $RC != 0 ; then
echo "ldapsearch (ldaps) failed ($RC)!"
echo "ldapsearch (StartTLS) failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
exit $RC
else