bts: Check if BTS_TRXC port is mapped before attempting UDP socket connect

A large number of our tests is currently failing with
	BTS_Tests.ttcn:341 Dynamic test case error: IPL4 Test Port not mapped
which was introduced by Change-Id Ie7d311bf8f03bf9b1d29b5bb28ffad793f215fd1

Change-Id: Ia1ef4ac7dcfec137a8613bc49a7f312d81a86153
This commit is contained in:
Harald Welte 2019-06-05 10:01:15 +02:00
parent a39ac756d3
commit d48c0c7f87
1 changed files with 1 additions and 1 deletions

View File

@ -505,7 +505,7 @@ runs on ConnHdlr {
map(self:L1CTL, system:L1CTL);
f_connect_reset(L1CTL);
if (mp_bts_trxc_port != -1) {
if (mp_bts_trxc_port != -1 and BTS_TRXC.checkstate("Mapped")) {
f_init_trxc(BTS_TRXC, id, g_bts_trxc_conn_id);
}