Mirror of the lttng-dev mailing list
 help / color / mirror / Atom feed
* [lttng-dev] [PATCH lttng-tools] Test: kill sessiond, relayd and background children on SIGTERM/SIGINT
       [not found] <1459974524-1396-1-git-send-email-jonathan.rajotte-julien@efficios.com>
@ 2016-04-20 19:59 ` Jérémie Galarneau
  0 siblings, 0 replies; only message in thread
From: Jérémie Galarneau @ 2016-04-20 19:59 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 3923 bytes --]

Merged, thanks!

Jérémie

On Wed, Apr 6, 2016 at 4:28 PM, Jonathan Rajotte
<jonathan.rajotte-julien at efficios.com> wrote:
> Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien at efficios.com>
> ---
>  tests/utils/utils.sh | 36 +++++++++++++++++++++++++++++-------
>  1 file changed, 29 insertions(+), 7 deletions(-)
>
> diff --git a/tests/utils/utils.sh b/tests/utils/utils.sh
> index 52c2f6b..5b81feb 100644
> --- a/tests/utils/utils.sh
> +++ b/tests/utils/utils.sh
> @@ -16,9 +16,11 @@
>  # 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
>
>  SESSIOND_BIN="lttng-sessiond"
> +SESSIOND_PIDS=""
>  RUNAS_BIN="lttng-runas"
>  CONSUMERD_BIN="lttng-consumerd"
>  RELAYD_BIN="lttng-relayd"
> +RELAYD_PIDS=""
>  LTTNG_BIN="lttng"
>  BABELTRACE_BIN="babeltrace"
>  OUTPUT_DEST=/dev/null
> @@ -42,6 +44,22 @@ export LTTNG_SESSIOND_PATH="/bin/true"
>
>  source $TESTDIR/utils/tap/tap.sh
>
> +function full_cleanup ()
> +{
> +       if [ -n "${SESSIOND_PIDS}" ] || [ -n "${RELAYD_PIDS}" ]; then
> +               kill -9 ${SESSIOND_PIDS} ${RELAYD_PIDS} > /dev/null 2>&1
> +       fi
> +
> +       # Disable trap for SIGTERM since the following kill to the
> +       # pidgroup will be SIGTERM. Otherwise it loops.
> +       # The '-' before the pid number ($$) indicates 'kill' to signal the
> +       # whole process group.
> +       trap - SIGTERM && kill -- -$$
> +}
> +
> +
> +trap full_cleanup SIGINT SIGTERM
> +
>  function print_ok ()
>  {
>         # Check if we are a terminal
> @@ -302,6 +320,8 @@ function start_lttng_relayd_opt()
>         else
>                 pass "Start lttng-relayd (opt: $opt)"
>         fi
> +
> +       RELAYD_PIDS=$(pgrep --full lt-$RELAYD_BIN)
>  }
>
>  function start_lttng_relayd()
> @@ -318,12 +338,10 @@ function stop_lttng_relayd_opt()
>  {
>         local withtap=$1
>
> -       PID_RELAYD=`pgrep --full lt-$RELAYD_BIN`
> -
>         if [ $withtap -eq "1" ]; then
> -               diag "Killing lttng-relayd (pid: $PID_RELAYD)"
> +               diag "Killing lttng-relayd (pid: $RELAYD_PIDS)"
>         fi
> -       kill $PID_RELAYD 1> $OUTPUT_DEST 2> $ERROR_OUTPUT_DEST
> +       kill $RELAYD_PIDS 1> $OUTPUT_DEST 2> $ERROR_OUTPUT_DEST
>         retval=$?
>
>         if [ $? -eq 1 ]; then
> @@ -341,6 +359,7 @@ function stop_lttng_relayd_opt()
>                         pass "Kill relay daemon"
>                 fi
>         fi
> +       RELAYD_PIDS=""
>         return $retval
>  }
>
> @@ -389,6 +408,7 @@ function start_lttng_sessiond_opt()
>                         ok $status "Start session daemon"
>                 fi
>         fi
> +       SESSIOND_PIDS=$(pgrep --full lt-$SESSIOND_BIN)
>  }
>
>  function start_lttng_sessiond()
> @@ -412,15 +432,15 @@ function stop_lttng_sessiond_opt()
>                 return
>         fi
>
> -       PID_SESSIOND="$(pgrep --full lt-$SESSIOND_BIN) $(pgrep --full $RUNAS_BIN)"
> +       local pids="${SESSIOND_PIDS} $(pgrep --full $RUNAS_BIN)"
>
>         if [ -n "$2" ]; then
>                 kill_opt="$kill_opt -s $signal"
>         fi
>         if [ $withtap -eq "1" ]; then
> -               diag "Killing lt-$SESSIOND_BIN pids: $(echo $PID_SESSIOND | tr '\n' ' ')"
> +               diag "Killing lt-$SESSIOND_BIN pids: $(echo $pids | tr '\n' ' ')"
>         fi
> -       kill $kill_opt $PID_SESSIOND 1> $OUTPUT_DEST 2> $ERROR_OUTPUT_DEST
> +       kill $kill_opt $pids 1> $OUTPUT_DEST 2> $ERROR_OUTPUT_DEST
>
>         if [ $? -eq 1 ]; then
>                 if [ $withtap -eq "1" ]; then
> @@ -437,6 +457,8 @@ function stop_lttng_sessiond_opt()
>                         out=$(pgrep --full $CONSUMERD_BIN)
>                         sleep 0.5
>                 done
> +
> +               SESSIOND_PIDS=""
>                 if [ $withtap -eq "1" ]; then
>                         pass "Kill session daemon"
>                 fi
> --
> 2.7.0
>



-- 
Jérémie Galarneau
EfficiOS Inc.
http://www.efficios.com


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-04-20 19:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1459974524-1396-1-git-send-email-jonathan.rajotte-julien@efficios.com>
2016-04-20 19:59 ` [lttng-dev] [PATCH lttng-tools] Test: kill sessiond, relayd and background children on SIGTERM/SIGINT Jérémie Galarneau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox