Skip to content

Commit b2fd3c5

Browse files
committed
[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 <nwolfer@nvidia.com>
1 parent 7576b9e commit b2fd3c5

File tree

1 file changed

+1
-1
lines changed
  • contrib/jenkins_tests

1 file changed

+1
-1
lines changed

contrib/jenkins_tests/vg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ for test_link in $test_ip_list; do
9595

9696
if [ `ps -ef | grep $test_app | wc -l` -gt 1 ];
9797
then
98-
${sudo_cmd} pkill -9 -f $test_app 2>/dev/null || true
98+
${sudo_cmd} pkill -SIGINT -f $test_app 2>/dev/null || true
9999
sleep 10
100100
# in case SIGINT didn't work
101101
if [ `ps -ef | grep $test_app | wc -l` -gt 1 ];

0 commit comments

Comments
 (0)