aboutsummaryrefslogtreecommitdiffstats
path: root/pcu
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2020-05-10 13:13:46 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2020-05-10 21:14:12 +0700
commitd4f22aaf314f0b15eb0806841112e9f2a8e6b62d (patch)
tree61d198e15f04e0defe361b2bb6c873f78eb46531 /pcu
parent0a9b148d2c071c6b0682a1c152ac269f6c6e3717 (diff)
library: enrich tr_RLCMAC_DATA_RRBP, rename to tr_RLCMAC_DATA_GPRS
Let's make this template more flexible, so it can be used to match any GPRS DL data blocks, not only those with rrbp_valid == true. Note that behavior of f_rx_rlcmac_dl_block_exp_data() is intentionally left unchanged, and will be fixed later. Change-Id: I3940216368cdbb58fe89420675d1d8d5f5e49b05 Signed-off-by: Vadim Yanitskiy <axilirator@gmail.com>
Diffstat (limited to 'pcu')
-rw-r--r--pcu/PCU_Tests.ttcn3
1 files changed, 2 insertions, 1 deletions
diff --git a/pcu/PCU_Tests.ttcn b/pcu/PCU_Tests.ttcn
index eff20f73..3d194a99 100644
--- a/pcu/PCU_Tests.ttcn
+++ b/pcu/PCU_Tests.ttcn
@@ -686,7 +686,8 @@ runs on RAW_PCU_Test_CT {
var PCUIF_Message pcu_msg;
var uint32_t dl_fn;
var boolean is_egprs := false;
- var template RlcmacDlBlock dl_template := tr_RLCMAC_DATA_RRBP;
+ /* FIXME: for some reason, this template expects blocks with 'rrbp_valid' flag set */
+ var template RlcmacDlBlock dl_template := tr_RLCMAC_DATA_GPRS(rrbp_valid := true);
dl_template.data.blocks := ?;
f_rx_rlcmac_dl_block(dl_block, dl_fn);