From c0f171c6612dc5afae0c24a93673e454fcd73909 Mon Sep 17 00:00:00 2001 From: Ward Vandewege Date: Mon, 28 Sep 2020 13:55:06 -0400 Subject: [PATCH] Do not error out in the integration test cleanup function. refs #16919 Arvados-DCO-1.1-Signed-off-by: Ward Vandewege --- tools/run-integration-tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/run-integration-tests.sh b/tools/run-integration-tests.sh index 09cb2518..140de3c8 100755 --- a/tools/run-integration-tests.sh +++ b/tools/run-integration-tests.sh @@ -7,6 +7,7 @@ set -e -o pipefail cleanup() { set -x + set +e +o pipefail kill ${arvboot_PID} ${consume_stdout_PID} ${wb2_PID} ${consume_wb2_stdout_PID} wait ${arvboot_PID} ${consume_stdout_PID} ${wb2_PID} ${consume_wb2_stdout_PID} || true if [ "${CLEANUP_ARVADOS_DIR}" -eq "1" ]; then -- 2.30.2