From b9173d3031d03a262c77e5e689ce54aed7f2700b Mon Sep 17 00:00:00 2001 From: Quanah Gibson-Mount Date: Thu, 30 Jun 2022 18:02:24 +0000 Subject: [PATCH] ITS#9468 - Fix script logic Fix missing addition of SERVERPID to KILLPIDS so that a slapd process doesn't get left behind in some instances --- tests/data/regressions/its9468/its9468 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/data/regressions/its9468/its9468 b/tests/data/regressions/its9468/its9468 index 3f8327006b..3e2e70fcf5 100755 --- a/tests/data/regressions/its9468/its9468 +++ b/tests/data/regressions/its9468/its9468 @@ -74,6 +74,7 @@ if test $RC != 0 ; then test $KILLSERVERS != no && kill -HUP $SERVERPID exit $RC fi +KILLPIDS="$KILLPIDS $SERVERPID" # # Start slapd that will proxy for the remote server @@ -418,4 +419,4 @@ echo ">>>>> Test succeeded" test $KILLSERVERS != no && wait -exit 0 \ No newline at end of file +exit 0 -- 2.47.3