aboutsummaryrefslogtreecommitdiffstats
path: root/pcu/PCU_Tests_RAW.ttcn
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-05-03 01:29:29 +0200
committerlaforge <laforge@gnumonks.org>2019-08-18 17:12:46 +0000
commit955aa94504510139a12d223071cf49ef90788a3d (patch)
treefd8c3005bbc5de49b4365e6ae38a29503cbc1008 /pcu/PCU_Tests_RAW.ttcn
parentce818da5b0e24ca5943f4061d53c41214678a830 (diff)
BSSGP_Emulation: Abandon "BssgpDecoded" intermediate structure
It originally seemed like a great idea to define a custom record which aggregates the decoded BSSGP, LLC, L3 and/or SNDCP and passes it to the individual ConnHdlr. However, particularly with testcase interoperability for IuPS in mind, this seems bogus. Also, we never really took advantage of this. Let's now decode as far as we can decode any PDU, and then send the decoded version of that PDU via the ports between the BSSGP_Emulation and the ConnHdlr component. Change-Id: I8c1082880902dd9a04935945f0293895f4d0c53a
Diffstat (limited to 'pcu/PCU_Tests_RAW.ttcn')
-rw-r--r--pcu/PCU_Tests_RAW.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcu/PCU_Tests_RAW.ttcn b/pcu/PCU_Tests_RAW.ttcn
index 36db2250..4732da60 100644
--- a/pcu/PCU_Tests_RAW.ttcn
+++ b/pcu/PCU_Tests_RAW.ttcn
@@ -433,7 +433,7 @@ testcase TC_pcuif_suspend() runs on bssgp_pcuif_CT {
f_sleep(1.0);
f_pcuif_tx(ts_PCUIF_SUSP_REQ(0, tlli, ra_id, 0));
- BSSGP_SIG[0].receive(tr_BD_BSSGP(tr_BSSGP_SUSPEND(tlli, mp_gb_cfg.cell_id.ra_id)));
+ BSSGP_SIG[0].receive(tr_BSSGP_SUSPEND(tlli, mp_gb_cfg.cell_id.ra_id));
setverdict(pass);
}