aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-01-09 19:55:40 +0100
committerlaforge <laforge@osmocom.org>2020-01-12 13:11:39 +0000
commitc675b6119c52d8ee9012ba6e4db800409b5b34e2 (patch)
tree3925e856378d5328962e0b20497a5c979425ac2e /library
parentd0575c2fd816bb6a594cd21012ea1421434f3808 (diff)
bsc: Introduce test TC_chan_rel_sccp_tiar_timeout
Verify SCCP T(iar) timeout triggers release of established channel. Change-Id: Ic2724f62689b99c33e2e5c3a0c2fd022178a788c
Diffstat (limited to 'library')
-rw-r--r--library/Osmocom_VTY_Functions.ttcn6
1 files changed, 6 insertions, 0 deletions
diff --git a/library/Osmocom_VTY_Functions.ttcn b/library/Osmocom_VTY_Functions.ttcn
index a1724e91..823d79fb 100644
--- a/library/Osmocom_VTY_Functions.ttcn
+++ b/library/Osmocom_VTY_Functions.ttcn
@@ -102,6 +102,7 @@ module Osmocom_VTY_Functions {
type integer BtsTrxNr (0..255);
type integer BtsTimeslotNr (0..7);
type integer MscNr (0..255);
+ type integer Cs7Nr (0..255);
type charstring BtsGprsMode ("none", "gprs", "egrps");
@@ -135,6 +136,11 @@ module Osmocom_VTY_Functions {
f_vty_transceive(pt, "msc " & int2str(msc));
}
+ function f_vty_enter_cfg_cs7_inst(TELNETasp_PT pt, Cs7Nr cs7_inst := 0) {
+ f_vty_enter_config(pt);
+ f_vty_transceive(pt, "cs7 instance " & int2str(cs7_inst));
+ }
+
type record of charstring rof_charstring;
function f_vty_config2(TELNETasp_PT pt, rof_charstring config_nodes, charstring cmd)
{