aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2022-04-27 17:56:05 +0200
committerHarald Welte <laforge@osmocom.org>2022-04-27 18:39:55 +0200
commit1222f52b43e864c2ccae31b92cbaa66ffb2d8cb1 (patch)
treea1366293af1f79f17582a5b9f170c41061d8e2dd
parentd686941aa8bbcb1edc08cd1a7529b5c3a3990f8b (diff)
bsc: Fix TC_cbsp_write_then_kill expectations
A more clear reading of TS 48.049 is that the KILL COMPLETE should *only* contain a Cell List IE if it relates to an Emergency message; only the Number of Broadcasts Completed IE indicates successful cells. osmo-bsc fixes this in I9a43d386da01f085663d231a555b8b5acc99faca Change-Id: Ia50e50f9812d9934d35d32b25e1079240df04a82 Related: SYS#5906
-rw-r--r--bsc/BSC_Tests_CBSP.ttcn4
1 files changed, 2 insertions, 2 deletions
diff --git a/bsc/BSC_Tests_CBSP.ttcn b/bsc/BSC_Tests_CBSP.ttcn
index b291546c..5f470ab0 100644
--- a/bsc/BSC_Tests_CBSP.ttcn
+++ b/bsc/BSC_Tests_CBSP.ttcn
@@ -800,8 +800,8 @@ testcase TC_cbsp_write_then_kill() runs on cbsp_test_CT {
/* expect to receive it once on the BTS */
var template (present) RSL_Message tr := f_page2rsl(pages[0], g_cbsp_msg_id, g_cbsp_ser_no);
IPA_RSL[0].receive(tr_ASP_RSL_UD(tr));
- /* kill it, expecting non-empty completion list */
- f_cbsp_kill(g_cbsp_msg_id, g_cbsp_ser_no, 0, cell_list, success_list:=?, compl_list:=?, fail_list:=omit);
+ /* kill it, expecting non-empty completion list; success must be empty in case of CBS! */
+ f_cbsp_kill(g_cbsp_msg_id, g_cbsp_ser_no, 0, cell_list, success_list:=omit, compl_list:=?, fail_list:=omit);
}
/* Write a message, then reset all messages */