Attention is currently required from: jolly.
1 comment:
File bts/BTS_Tests_ASCI.ttcn:
RSL.send(ts_RSL_UNITDATA_REQ(g_chan_nr, ts_RslLinkID_DCCH(0), uplink_free));
for (var integer i := 0; i < 20; i := i + 1) {
f_l1_exp_lapdm(tr_LAPDm_Bter_UI(uplink_free));
log("Received UPLINK FREE.");
}
/* Send one UPLINK BUSY message and expect it to be received. */
log("Send UPLINK BUSY.");
RSL.send(ts_RSL_UNITDATA_REQ(g_chan_nr, ts_RslLinkID_DCCH(0), uplink_busy));
f_l1_exp_lapdm(tr_LAPDm_UI(0, cr_MT_CMD, uplink_busy));
again here I smell the potential for race conditions. Things don't happen synchronously and there are many queues involved. So you cannot reliably guarantee there's no old uplink_free still receiveda this point here.
To view, visit change 33817. To unsubscribe, or for help writing mail filters, visit settings.