From 2a6722b5059e5f1acce7f78b7a6c943b34e16178 Mon Sep 17 00:00:00 2001 From: Roman Grundkiewicz Date: Tue, 25 May 2021 02:49:34 -0700 Subject: Always succeed in server clean ups --- tests/server/test_ende.sh | 2 +- tests/server/test_ende_align.sh | 2 +- tests/server/test_ende_batch32.sh | 2 +- tests/server/test_ende_cpu.sh | 2 +- tests/server/test_ende_with_empty_lines.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/server/test_ende.sh b/tests/server/test_ende.sh index 75392cf..71bbb8d 100644 --- a/tests/server/test_ende.sh +++ b/tests/server/test_ende.sh @@ -9,7 +9,7 @@ set -e clean_up() { - kill $SERVER_PID + kill $SERVER_PID || : } trap clean_up EXIT diff --git a/tests/server/test_ende_align.sh b/tests/server/test_ende_align.sh index 49e4f40..6351889 100644 --- a/tests/server/test_ende_align.sh +++ b/tests/server/test_ende_align.sh @@ -9,7 +9,7 @@ set -e clean_up() { - kill $SERVER_PID + kill $SERVER_PID || : } trap clean_up EXIT diff --git a/tests/server/test_ende_batch32.sh b/tests/server/test_ende_batch32.sh index 2866e81..95e967b 100644 --- a/tests/server/test_ende_batch32.sh +++ b/tests/server/test_ende_batch32.sh @@ -9,7 +9,7 @@ set -e clean_up() { - kill $SERVER_PID + kill $SERVER_PID || : } trap clean_up EXIT diff --git a/tests/server/test_ende_cpu.sh b/tests/server/test_ende_cpu.sh index bc05803..2cef7c2 100644 --- a/tests/server/test_ende_cpu.sh +++ b/tests/server/test_ende_cpu.sh @@ -14,7 +14,7 @@ if [ ! $MRT_MARIAN_USE_MKL ]; then fi clean_up() { - kill $SERVER_PID + kill $SERVER_PID || : } trap clean_up EXIT diff --git a/tests/server/test_ende_with_empty_lines.sh b/tests/server/test_ende_with_empty_lines.sh index c089aaa..2103cf2 100644 --- a/tests/server/test_ende_with_empty_lines.sh +++ b/tests/server/test_ende_with_empty_lines.sh @@ -9,7 +9,7 @@ set -e clean_up() { - kill $SERVER_PID + kill $SERVER_PID || : } trap clean_up EXIT -- cgit v1.2.3