From 4b731de0560a10f0aaddf86ea282d5f2d4a375bc Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 3 Mar 2020 16:30:27 +0100 Subject: ggsn: Allow running without VTY Change-Id: I73339cb5481c199c3a9d63a5323ff75a8ee4f645 --- ggsn_tests/GGSN_Tests.ttcn | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/ggsn_tests/GGSN_Tests.ttcn b/ggsn_tests/GGSN_Tests.ttcn index be0e565f..54064dbc 100644 --- a/ggsn_tests/GGSN_Tests.ttcn +++ b/ggsn_tests/GGSN_Tests.ttcn @@ -46,6 +46,9 @@ module GGSN_Tests { charstring m_ggsn_ip_gtpc := "127.0.0.6"; charstring m_ggsn_ip_gtpu := "127.0.0.6"; + /* Does the GGSN support a VTY? */ + boolean m_have_vty := true; + /* * Our tests expect to see these DNS servers in 'Create PDP context responses' sent by the GGSN. * These addresses must therefore match 'ip[v6] dns' options configured in osmo-ggsn.conf. @@ -195,9 +198,11 @@ module GGSN_Tests { g_c_seq_nr := f_rnd_int(65535); g_d_seq_nr := f_rnd_int(65535); - f_init_vty(); - f_vty_set_gpdu_txseq(use_gtpu_txseq); - f_vty_enable_echo_interval(g_use_echo); + if (m_have_vty) { + f_init_vty(); + f_vty_set_gpdu_txseq(use_gtpu_txseq); + f_vty_enable_echo_interval(g_use_echo); + } } /* Altstep implementing responses to any incoming echo requests */ -- cgit v1.2.3