Skip to content

Commit

Permalink
ttcn3-bts-test: do not start osmo-bts-virtual / virtphy containers
Browse files Browse the repository at this point in the history
We cannot execute the virtphy based testcases due to the limitations
of Docker (see moby/libnetwork#2397).  The
function starting the testsuite was already commented out, but not
the lines starting containers with osmo-bts-virtual and virtphy.

To put it simple, we start and immediately terminate those containers.
And since recently (Feb 1st), we started seeing socket creation errors
in both containers, causing jenkins.sh to abort early.  It's yet
unclear what's the cause of those socket errors, but regardless of
that we should still be running other pending testcases.

Change-Id: I7c9ccc9cc400edb7a05e222e51671fd49631a4cd
Fixes: OS#6352
  • Loading branch information
axilirator committed Feb 9, 2024
1 parent 27a8a92 commit 8c6ebc8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ttcn3-bts-test/jenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,11 @@ docker_kill_wait ${BUILD_TAG}-fake_trx
docker_kill_wait ${BUILD_TAG}-bts
cp virtphy/osmo-bts.gen.cfg $VOL_BASE_DIR/bts/
network_replace_subnet_in_configs
start_bts virtual 0
start_virtphy
# FIXME: multicast to/from a docker bridge network is currently not possible.
# See https://github.com/moby/libnetwork/issues/2397.
echo "XXX: not running the virtphy configuration"
#start_bts virtual 0
#start_virtphy
# ... and execute the testsuite again with different cfg
#start_testsuite virtphy

Expand Down

0 comments on commit 8c6ebc8

Please sign in to comment.