From c29605653efc6fb29a3af8435fe418e17341ebb8 Mon Sep 17 00:00:00 2001 From: Kim Altintop Date: Wed, 9 Aug 2023 09:46:48 +0200 Subject: [PATCH] fixup! fixup! Terminate background smoke tests on exit --- test/run-smoke-tests.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/run-smoke-tests.sh b/test/run-smoke-tests.sh index c65d8db487..97c6792935 100755 --- a/test/run-smoke-tests.sh +++ b/test/run-smoke-tests.sh @@ -190,8 +190,6 @@ terminate_jobs() { running="$(jobs -pr)" if [ -n "$running" ]; then kill "$running" - else - echo "no running jobs" fi } trap 'terminate_jobs' SIGINT SIGTERM EXIT