From b2fd3c5f886e9f3bb47ad6a8f543572cd0b7f294 Mon Sep 17 00:00:00 2001 From: NirWolfer Date: Wed, 22 Oct 2025 17:17:20 +0300 Subject: [PATCH] [CI] issue: 4684071 Terminate Valgrind gracefully Valgrind today is being terminated with -9 which prevents it from printing all the summaries at the end which are needed for debuging. Change -9 signal to -SIGINT af the first try of shutting down Valgrind Signed-off-by: NirWolfer --- contrib/jenkins_tests/vg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/jenkins_tests/vg.sh b/contrib/jenkins_tests/vg.sh index 75b8cc861..5b397e3f6 100755 --- a/contrib/jenkins_tests/vg.sh +++ b/contrib/jenkins_tests/vg.sh @@ -95,7 +95,7 @@ for test_link in $test_ip_list; do if [ `ps -ef | grep $test_app | wc -l` -gt 1 ]; then - ${sudo_cmd} pkill -9 -f $test_app 2>/dev/null || true + ${sudo_cmd} pkill -SIGINT -f $test_app 2>/dev/null || true sleep 10 # in case SIGINT didn't work if [ `ps -ef | grep $test_app | wc -l` -gt 1 ];