From: Mathieu Desnoyers Date: Thu, 16 May 2019 19:07:59 +0000 (-0400) Subject: Fix: test: utils.sh: exit from process on full_cleanup X-Git-Tag: v2.10.8~22 X-Git-Url: http://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=ef001e787856eba2c526d318ffdbdd81ced7f144 Fix: test: utils.sh: exit from process on full_cleanup Signed-off-by: Mathieu Desnoyers Signed-off-by: Jérémie Galarneau --- diff --git a/tests/utils/utils.sh b/tests/utils/utils.sh index 5de6d26a8..ce1974ba1 100644 --- a/tests/utils/utils.sh +++ b/tests/utils/utils.sh @@ -66,6 +66,7 @@ function full_cleanup () # The '-' before the pid number ($$) indicates 'kill' to signal the # whole process group. trap - SIGTERM && kill -- -$$ + exit 1 } function null_pipes ()