From mboxrd@z Thu Jan 1 00:00:00 1970 From: mathieu.desnoyers@efficios.com (Mathieu Desnoyers) Date: Thu, 16 May 2019 15:07:59 -0400 Subject: [lttng-dev] [PATCH lttng-tools 4/6] Fix: test: utils.sh: exit from process on full_cleanup In-Reply-To: <20190516190801.16878-1-mathieu.desnoyers@efficios.com> References: <20190516190801.16878-1-mathieu.desnoyers@efficios.com> Message-ID: <20190516190801.16878-4-mathieu.desnoyers@efficios.com> Signed-off-by: Mathieu Desnoyers --- tests/utils/utils.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/utils/utils.sh b/tests/utils/utils.sh index 53964027..ad3088d6 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 () -- 2.17.1