neels has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/31084 )
Change subject: hnbgw: add HNBGWVTY to ConnHdlr ......................................................................
hnbgw: add HNBGWVTY to ConnHdlr
Change-Id: Ic325fd5eb5134529012856c08336633c1413284d --- M hnbgw/HNBGW_Tests.ttcn 1 file changed, 6 insertions(+), 1 deletion(-)
Approvals: neels: Looks good to me, approved fixeria: Looks good to me, but someone else must approve pespin: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/hnbgw/HNBGW_Tests.ttcn b/hnbgw/HNBGW_Tests.ttcn index 0d32edf..eb7fad0 100644 --- a/hnbgw/HNBGW_Tests.ttcn +++ b/hnbgw/HNBGW_Tests.ttcn @@ -194,6 +194,8 @@ var integer g_sccp_conn_id; var TestHdlrParams g_pars; timer g_Tguard; + + port TELNETasp_PT HNBGWVTY; }
@@ -457,8 +459,11 @@ g_Tguard.start(t_guard); activate(as_Tguard_ConnHdlr());
+ map(self:HNBGWVTY, system:HNBGWVTY); + f_vty_set_prompts(HNBGWVTY); + f_vty_transceive(HNBGWVTY, "enable"); + /* TODO: CTRL? */ - /* TODO: VTY? */ }
/* global altstep for global guard timer; */