aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2024-03-25 13:47:07 +0100
committerosmith <osmith@sysmocom.de>2024-03-25 13:56:47 +0000
commitd7c50db104de763ba44a0b81c99321b39aa33e0e (patch)
tree2d07f94e91ae980942ab7e1f2f15fbcdb9a8430d
parent7c6f7f466c200d4869d598f7c1c29c4df03c5989 (diff)
ttcn3-ggsn-test: ignore failure to kill osmo-ggsn
Don't fail if osmo-ggsn can't be killed at the end of a testsuite run. This happens currently with ttcn3-ggsn-test-kernel-latest-* jobs, in the v6_only configurations, because osmo-ggsn latest doesn't support ipv6 yet and exits. The jenkins.sh should keep going and try other combinations, and exit without error in the end. Fixes: d8c51cce ("ttcn3-ggsn-test: run with multiple configurations") Change-Id: I6f3154a9ef114f31bcb5868ee09d1ebc10f35d07
-rwxr-xr-xttcn3-ggsn-test/jenkins.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ttcn3-ggsn-test/jenkins.sh b/ttcn3-ggsn-test/jenkins.sh
index f9e7a47..7c9c7ac 100755
--- a/ttcn3-ggsn-test/jenkins.sh
+++ b/ttcn3-ggsn-test/jenkins.sh
@@ -132,5 +132,5 @@ for i in $TEST_CONFIGS_ALL; do
start_ggsn "$i"
start_testsuite "$i"
- docker_kill_wait "$BUILD_TAG"-ggsn
+ docker_kill_wait "$BUILD_TAG"-ggsn || true
done