Attention is currently required from: pespin. fixeria has posted comments on this change by pespin. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41747?usp=email )
Change subject: 5gc: Test UE Triggered Service Request ...................................................................... Patch Set 3: (3 comments) File 5gc/ConnHdlr.ttcn: https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41747/comment/a3ef860b_ada00670?usp=email : PS3, Line 410: var PDUSessionResourceSetupItemSURes it_resp; : it_resp := f_pdu_handle_session_resource_setup_item_su(li_req[i]); : if (i == 0) { /* min 1 item in list doesn't allow previously allocating an empty list */ : li_resp := { it_resp }; : } else { : li_resp := li_resp & { it_resp }; : Assigning items via the index works fine: ```suggestion li_resp[i] := f_pdu_handle_session_resource_setup_item_su(li_req[i]); ``` TITAN takes care of resizing etc. https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41747/comment/77a43fdf_028f3593?usp=email : PS3, Line 691: var template (value) NGAP_PDU tx_pdu; unused https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41747/comment/d9ff34e3_d94016aa?usp=email : PS3, Line 694: var NG_NAS_DL_Message_Type rx_nas; unused -- To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41747?usp=email To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email Gerrit-MessageType: comment Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I65cf7844d11be55d9d5c8e31fd87a3c72e6a607b Gerrit-Change-Number: 41747 Gerrit-PatchSet: 3 Gerrit-Owner: pespin <[email protected]> Gerrit-Reviewer: Jenkins Builder Gerrit-CC: fixeria <[email protected]> Gerrit-Attention: pespin <[email protected]> Gerrit-Comment-Date: Thu, 25 Dec 2025 10:48:24 +0000 Gerrit-HasComments: Yes Gerrit-Has-Labels: No
