From 5a3f99c01c39a6457daa71ae8a9db7b3a0a2e2e6 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Tue, 10 Aug 2021 16:25:47 +0200 Subject: stp: rename mp_stp_has_asp_quirk Rename the option to mp_osmo_stp_newer_than_1_4_0, because I'm going to use the variable in the next patch for something unrelated to the asp quirk and so we can avoid introducing another variable. Related: docker-playground I6a32398242b53c827a94cf65e4a35900a7c4171a Related: OS#4239 Change-Id: I43b1aa2c029c88c88320d40f60df46a5eb6c4c24 --- stp/STP_Tests_M3UA.ttcn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stp') diff --git a/stp/STP_Tests_M3UA.ttcn b/stp/STP_Tests_M3UA.ttcn index 13703d0c..b97d4da0 100644 --- a/stp/STP_Tests_M3UA.ttcn +++ b/stp/STP_Tests_M3UA.ttcn @@ -73,8 +73,8 @@ modulepar { integer mp_recovery_timeout_msec := 2000; charstring mp_sccp_service_type := "mtp3_itu"; - /* does the STP support the 'asp quirk' command? */ - boolean mp_stp_has_asp_quirk := true; + /* is osmo-stp newer than 1.4.0? */ + boolean mp_osmo_stp_newer_than_1_4_0 := true; } type record M3uaConfig { @@ -1034,7 +1034,7 @@ control { execute( TC_clnt_asp_to_sg() ); /* remove the condition if osmo-stp > 1.4.0 is released */ - if (mp_stp_has_asp_quirk) { + if (mp_osmo_stp_newer_than_1_4_0) { execute( TC_clnt_quirk_no_notify_asp_act() ); execute( TC_clnt_no_daud_in_asp() ); execute( TC_clnt_quirk_daud_in_asp() ); -- cgit v1.2.3