hlr: Get rid of module param mp_hlr_supports_dgsm

This param is not needed anymore since new releases used in -latest don't
need to disable it.

Change-Id: I484267c169646310564bd6d9cd13a196b61400e4
Related: OS#5042
This commit is contained in:
Pau Espin 2021-02-26 13:08:09 +01:00
parent c3344ea32e
commit 0055a29ea9
2 changed files with 6 additions and 14 deletions

View File

@ -12,7 +12,6 @@
[MODULE_PARAMETERS]
HLR_Tests.mp_hlr_supports_dgsm := true
[MAIN_CONTROLLER]

View File

@ -70,9 +70,6 @@ modulepar {
/* emulated GSUP server (second HLR) */
charstring mp_hlr_ts_ip := "127.0.0.99";
integer mp_hlr_ts_port := 4222;
/* drop after osmo-hlr release > 1.2.0 */
boolean mp_hlr_supports_dgsm := true;
};
type record HlrSubscrAud2G {
@ -154,9 +151,7 @@ function f_init_vty() runs on test_CT {
map(self:VTY, system:VTY);
f_vty_set_prompts(VTY);
f_vty_transceive(VTY, "enable");
if (mp_hlr_supports_dgsm) {
f_vty_config(VTY, "mslookup", "no mdns bind");
}
f_vty_config(VTY, "mslookup", "no mdns bind");
}
private altstep as_Tguard() runs on test_CT {
@ -1973,13 +1968,11 @@ control {
execute( TC_subscr_create_on_demand_ul() );
execute( TC_subscr_create_on_demand_sai() );
if (mp_hlr_supports_dgsm) {
execute( TC_MSLookup_mDNS_service_other_home() );
execute( TC_MSLookup_GSUP_proxy() );
execute( TC_MSLookup_mDNS_service_GSUP_HLR_home() );
execute( TC_MSLookup_mDNS_service_GSUP_HLR_proxy() );
execute( TC_MSLookup_mDNS_service_other_proxy() );
}
execute( TC_MSLookup_mDNS_service_other_home() );
execute( TC_MSLookup_GSUP_proxy() );
execute( TC_MSLookup_mDNS_service_GSUP_HLR_home() );
execute( TC_MSLookup_mDNS_service_GSUP_HLR_proxy() );
execute( TC_MSLookup_mDNS_service_other_proxy() );
};
};