fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42347?usp=email )
Change subject: s1gw: S1GW_UEMux.f_trx_s1ap_pdu(): fix setverdict() message param ......................................................................
s1gw: S1GW_UEMux.f_trx_s1ap_pdu(): fix setverdict() message param
On timeout pdu was never assigned (it's an out parameter), so TITAN logs <unbound>. The useful diagnostic is the expected template, not the received value.
Change-Id: Idceefa82ec1b5fc71228b3847c7a22f419c9675e Fixes: 325d07697 ("s1gw: add TC_uemux_uldl_nas_release") --- M s1gw/S1GW_UEMux.ttcn 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/s1gw/S1GW_UEMux.ttcn b/s1gw/S1GW_UEMux.ttcn index baecaff..977ceb1 100644 --- a/s1gw/S1GW_UEMux.ttcn +++ b/s1gw/S1GW_UEMux.ttcn @@ -65,7 +65,7 @@ Misc_Helpers.f_shutdown(__BFILE__, __LINE__); } [] T.timeout { - setverdict(fail, "Timeout waiting for S1AP PDU (", dir, "): ", pdu); + setverdict(fail, "Timeout waiting for S1AP PDU (", dir, "): ", tr_pdu); Misc_Helpers.f_shutdown(__BFILE__, __LINE__); } }