aboutsummaryrefslogtreecommitdiffstats
path: root/bsc/MSC_ConnectionHandler.ttcn
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-03-21 19:33:13 +0100
committerHarald Welte <laforge@gnumonks.org>2018-03-21 22:48:18 +0100
commit60aa576a6288b1a71f29b74933143a1cbbda4e55 (patch)
treebbdcd5099b1e4ec75aaf9240285b565d857df149 /bsc/MSC_ConnectionHandler.ttcn
parent6fa1f73346fedff8055314645063de3251abe2bc (diff)
bsc: Add tests for assigning channels of all 5 codecs
This tests if the BSC is chosing the correct codec during the assignment procedure. Change-Id: Ia67c09fa725eff48ec56779f8674ddcaa08a8793
Diffstat (limited to 'bsc/MSC_ConnectionHandler.ttcn')
-rw-r--r--bsc/MSC_ConnectionHandler.ttcn6
1 files changed, 4 insertions, 2 deletions
diff --git a/bsc/MSC_ConnectionHandler.ttcn b/bsc/MSC_ConnectionHandler.ttcn
index 44def3bc..659ac36a 100644
--- a/bsc/MSC_ConnectionHandler.ttcn
+++ b/bsc/MSC_ConnectionHandler.ttcn
@@ -348,14 +348,16 @@ type record TestHdlrParams {
OCT1 ra,
GsmFrameNumber fn,
hexstring imsi,
- RslLinkId link_id
+ RslLinkId link_id,
+ BSSMAP_IE_SpeechCodecList ass_codec_list optional
};
template (value) TestHdlrParams t_def_TestHdlrPars := {
ra := '23'O,
fn := 23,
imsi := '001019876543210'H,
- link_id := valueof(ts_RslLinkID_DCCH(0))
+ link_id := valueof(ts_RslLinkID_DCCH(0)),
+ ass_codec_list := omit
}
function f_create_chan_and_exp() runs on MSC_ConnHdlr {