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.12.0-rc1~457 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=4e8ea4fa44fb7646f023f985d45035d1561720d8 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 0278bcf5e..d156f17da 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 ()