aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-01-03 20:18:57 +0100
committerlaforge <laforge@osmocom.org>2020-01-05 11:21:07 +0000
commit6f319f9794c2bf8bcbb5004b1bf00f9caa720ddf (patch)
tree421a386b13e242a6a8c5a55bcedd4b0150c11934
parentd19ba6dbbee083ca1c4318390af04bea7e2292e7 (diff)
ggsn: Drop unneeded m_ggsn_supports_echo_interval
Latest osmo-ggsn release is 1.5.0, so this param is not needed at all. Change-Id: Ie1c3cde2a01e8ea49aadcb1f7384995cb68039cb
-rw-r--r--ggsn_tests/GGSN_Tests.ttcn15
1 files changed, 2 insertions, 13 deletions
diff --git a/ggsn_tests/GGSN_Tests.ttcn b/ggsn_tests/GGSN_Tests.ttcn
index 44dba4af..40506dfa 100644
--- a/ggsn_tests/GGSN_Tests.ttcn
+++ b/ggsn_tests/GGSN_Tests.ttcn
@@ -64,13 +64,6 @@ module GGSN_Tests {
* The tests expect to be able to send ping packets between any two simulated MS within the same
* address range. This requires IP forwarding to be enabled on the corresponding tun interfaces.
*/
-
- /*
- * Whether ggsn supports "(no) echo-interval" VTY command
- * (osmo-ggsn.git Id2c84165dc59dff495106758146a701ca488834f).
- * This option can be dropped after osmo-ggsn release > 1.4.0 exists.
- */
- boolean m_ggsn_supports_echo_interval := true;
}
type set PdpContext {
@@ -203,9 +196,7 @@ module GGSN_Tests {
f_init_vty();
f_vty_set_gpdu_txseq(use_gtpu_txseq);
- if (m_ggsn_supports_echo_interval) {
- f_vty_enable_echo_interval(g_use_echo);
- }
+ f_vty_enable_echo_interval(g_use_echo);
}
/* Altstep implementing responses to any incoming echo requests */
@@ -1506,8 +1497,6 @@ module GGSN_Tests {
execute(TC_pdp_act2_recovery());
execute(TC_act_deact_retrans_duplicate());
- if (m_ggsn_supports_echo_interval) {
- execute(TC_pdp_act_restart_ctr_echo());
- }
+ execute(TC_pdp_act_restart_ctr_echo());
}
}