From 4e8ea4fa44fb7646f023f985d45035d1561720d8 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 16 May 2019 15:07:59 -0400 Subject: [PATCH] Fix: test: utils.sh: exit from process on full_cleanup MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Mathieu Desnoyers Signed-off-by: Jérémie Galarneau --- tests/utils/utils.sh | 1 + 1 file changed, 1 insertion(+) 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 () -- 2.34.1