aboutsummaryrefslogtreecommitdiffstats
path: root/hlr
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2018-06-12 13:45:59 +0200
committerAlexander Couzens <lynxis@fe80.eu>2018-06-12 13:51:14 +0200
commit98aa59e0643a31acb6eabed4146e7ad7709823bf (patch)
treeca056da7ea74917eeced0b63304df5336005af38 /hlr
parent02496257f61037cb0a199f72534d341672d30a38 (diff)
Osmocom_VTY_Functions: move f_vty_transceive_match from HLR to this library
f_vty_transceive_match will be used by future SGSN tests. Change-Id: Ia69ab6d5639c2e10059f88c8cc97463820cb72e6
Diffstat (limited to 'hlr')
-rw-r--r--hlr/HLR_Tests.ttcn8
1 files changed, 0 insertions, 8 deletions
diff --git a/hlr/HLR_Tests.ttcn b/hlr/HLR_Tests.ttcn
index 90a00bfe..b4cf1954 100644
--- a/hlr/HLR_Tests.ttcn
+++ b/hlr/HLR_Tests.ttcn
@@ -172,14 +172,6 @@ function f_init() runs on test_CT {
f_ipa_ctrl_start(mp_hlr_ip, mp_hlr_ctrl_port);
}
-function f_vty_transceive_match(TELNETasp_PT pt, charstring cmd, template charstring exp_ret) {
- var charstring ret := f_vty_transceive_ret(pt, cmd);
- if (not match(ret, exp_ret)) {
- setverdict(fail, "Non-matching VTY response: ", ret);
- self.stop;
- }
-}
-
private template (value) charstring t_subscr_prefix(hexstring imsi) :=
"subscriber imsi " & hex2str(imsi) & " ";