From 23e274919d14a37a9c40163219ce230acd2a100f Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 9 Oct 2020 12:15:18 +0200 Subject: PCU_Tests_NS: Fix our expectations regarding CellID presence/absence This is required by the spec, and implemented libosmocore since Change-Id Ie87820537d6d616da4fd4bbf73eab06e28fda5e1 So let's change our test expectations. Meanwhile, introduce mp_tolerate_bvc_reset_cellid for working around the bug in 'latest'. Change-Id: Icebee25b53fef623db6ae91ca0d943e70a3c86b7 --- library/RAW_NS.ttcn | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'library') diff --git a/library/RAW_NS.ttcn b/library/RAW_NS.ttcn index dca352f2..23530462 100644 --- a/library/RAW_NS.ttcn +++ b/library/RAW_NS.ttcn @@ -162,11 +162,10 @@ runs on RAW_NS_CT { } /* Receive a BSSGP RESET for given BVCI and ACK it */ -altstep as_rx_bvc_reset_tx_ack(BssgpBvci bvci, BssgpCellId cell_id, boolean oneshot := false, integer idx := 0) runs on RAW_NS_CT { +altstep as_rx_bvc_reset_tx_ack(BssgpBvci bvci, template (omit) BssgpCellId cell_id, boolean oneshot := false, integer idx := 0) runs on RAW_NS_CT { var NS_RecvFrom ns_rf; - /* FIXME: nail down received cell_id in match */ [] NSCP[idx].receive(t_NS_RecvFrom(tr_NS_UNITDATA(t_SduCtrlB, 0, - decmatch tr_BVC_RESET(?, bvci, ?)))) + decmatch tr_BVC_RESET(?, bvci, cell_id)))) -> value ns_rf { var PDU_BSSGP bssgp_rx := dec_PDU_BSSGP(ns_rf.msg.pDU_NS_Unitdata.nS_SDU); var PDU_BSSGP bssgp_tx := valueof(ts_BVC_RESET_ACK(bvci, cell_id)); -- cgit v1.2.3