aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-08-10 16:25:47 +0200
committerlaforge <laforge@osmocom.org>2021-08-15 17:17:58 +0000
commit5a3f99c01c39a6457daa71ae8a9db7b3a0a2e2e6 (patch)
tree86cd9ee33e89b40d6df36e61f786cdee8eb227fa
parent79606cfcbc6195e43c0f3fd628a4f071eb4ada60 (diff)
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
-rw-r--r--stp/STP_Tests_M3UA.ttcn6
1 files changed, 3 insertions, 3 deletions
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() );