Skip to content
In progress

Changes

Progress:

Summary

  1. bts: create all components alive (details)
  2. bts: fix unbound variable in as_rsl_fail_err() (details)
  3. fixup: bts: create all components alive (details)
Commit 713e7a86effa70e0aa1749c03ac1a5b687397fd8 by Vadim Yanitskiy
bts: create all components alive

This mitigates sporadic dynamic-testcase errors triggered by messages
being sent to components that have terminated before receiving them.

Change-Id: I68929b45d66d60617079a4f92d40ffea439bf4be
The file was modifiedbts/BTS_Tests.ttcn
The file was modifiedbts/BTS_Tests_LAPDm.ttcn
Commit 6741c21fe3065feab705f6ef22685e49052585c9 by Vadim Yanitskiy
bts: fix unbound variable in as_rsl_fail_err()

Change-Id: Ifcbdfb8b5a0e08ca3f8e610ca4940a2bdafa3cac
The file was modifiedbts/BTS_Tests_LAPDm.ttcn
Commit c50937d6371a7b203a52ec6c2daf52fe443f398f by Vadim Yanitskiy
fixup: bts: create all components alive

Making the ConnHdlr and lapdm_CT components alive resulted in
massive regressions.  Specifically, trxcon started rejecting L1CTL
connections with the following message:

  L1CTL server cannot accept more than 1 connection(s)

Apparently, alive components do not close the L1CTL connection
automatially, unless the L1CTL port is unmap()ped from the system
explicitly.  Thus, testcases spawning multiple alive components
end up creating multiple L1CTL connections, which get rejected.

Let's revert those components that speak L1CTL back to normal
(non-alive), while keeping the emulation components alive.

Change-Id: Id5edfa2514024d1fe83f6c4082e096044ce8e6fd
Fixes: 713e7a86 ("bts: create all components alive")
The file was modifiedbts/BTS_Tests_LAPDm.ttcn
The file was modifiedbts/BTS_Tests.ttcn