Vadim Yanitskiy has uploaded this change for review. ( https://gerrit.osmocom.org/14230
Change subject: L1CTL_Types.ttcn: do not restrict the length of L1ctlDataInd ...................................................................... L1CTL_Types.ttcn: do not restrict the length of L1ctlDataInd In the existing TC_pcu_* test cases we use L1CTL_DATA_* messages to send / receive (E)GPRS related MAC-blocks. The length of such blocks can be greater than 23 octets (i.e. fixed MAC-block length in GSM), up to 162 octets to be precise. Change-Id: Iced78796882b757016d02a266d55bc2a98b62a3d --- M library/L1CTL_Types.ttcn 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/30/14230/1 diff --git a/library/L1CTL_Types.ttcn b/library/L1CTL_Types.ttcn index 87849f5..f59d194 100644 --- a/library/L1CTL_Types.ttcn +++ b/library/L1CTL_Types.ttcn @@ -159,7 +159,7 @@ } with { variant "" }; type record L1ctlDataInd { - octetstring payload length(23) + octetstring payload } with { variant (payload) "BYTEORDER(first)" }; -- To view, visit https://gerrit.osmocom.org/14230 To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-MessageType: newchange Gerrit-Change-Id: Iced78796882b757016d02a266d55bc2a98b62a3d Gerrit-Change-Number: 14230 Gerrit-PatchSet: 1 Gerrit-Owner: Vadim Yanitskiy <axilira...@gmail.com>