fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41644?usp=email )
Change subject: bts: fix unbound variable in as_rsl_fail_err() ......................................................................
bts: fix unbound variable in as_rsl_fail_err()
Change-Id: Ifcbdfb8b5a0e08ca3f8e610ca4940a2bdafa3cac --- M bts/BTS_Tests_LAPDm.ttcn 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/44/41644/1
diff --git a/bts/BTS_Tests_LAPDm.ttcn b/bts/BTS_Tests_LAPDm.ttcn index 5b33795..8b091f7 100644 --- a/bts/BTS_Tests_LAPDm.ttcn +++ b/bts/BTS_Tests_LAPDm.ttcn @@ -507,7 +507,7 @@ /* fail if we receive an RSL ERROR IND */ private altstep as_rsl_fail_err() runs on ConnHdlr { var RSL_Message rx_rsl; - [] RSL.receive(tr_RSL_ERROR_IND(g_chan_nr, ?, ?)) { + [] RSL.receive(tr_RSL_ERROR_IND(g_chan_nr, ?, ?)) -> rx_rsl { setverdict(fail, "Received RSL ERROR IND ", rx_rsl); } }