fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/34678?usp=email )
Change subject: BTS_Tests: fix TC_rsl_rf_resource_ind: update mp_interf_band ......................................................................
BTS_Tests: fix TC_rsl_rf_resource_ind: update mp_interf_band
At some point (see related commit) we changed the ordering of default interference boundaries from descending to ascending in osmo-bsc. However the testsuite was not updated. Fix this.
Change-Id: I4f0d0814c343c626f6f7e5bafb7ac46cd7f362f6 Related: osmo-bsc.git Ie9bf4bf0c89418685b8ea5096332d22cfba7c521 Related: SYS#5313, OS#5956 --- M bts/BTS_Tests.ttcn 1 file changed, 24 insertions(+), 9 deletions(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve pespin: Looks good to me, but someone else must approve fixeria: Looks good to me, approved
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn index db66b0c..d667344 100644 --- a/bts/BTS_Tests.ttcn +++ b/bts/BTS_Tests.ttcn @@ -135,16 +135,16 @@ /* default Training Sequence Code */ GsmTsc mp_tsc_def := 7; /* Default interference boundaries in osmo-bsc (in dBm): - * 0(-85) X1(-91) X2(-97) X3(-103) X4(-109) X5(-115) + * 0(-115) X1(-109) X2(-103) X3(-97) X4(-91) X5(-85) * Default interference level reported by fake_trx.py: - * 0: -109 >= -85 dBm (no) - * X1: -109 >= -91 dBm (no) - * X2: -109 >= -97 dBm (no) - * X3: -109 >= -103 dBm (no) - * X4: -109 >= -109 dBm (yes) - * X5: -109 >= -115 dBm (no) - * So all channels should be in band 4. */ - uint3_t mp_interf_band := 4; + * 0: -109 < -115 dBm + * X1: -109 < -109 dBm + * X2: -109 < -103 dBm <-- stop here + * X3: -109 < -97 dBm + * X4: -109 < -91 dBm + * X5: -109 < -85 dBm + * So all channels should be in band 2. */ + uint3_t mp_interf_band := 2; /* T3105 timer (see 3GPP TS 44.018, section 11.1.2) */ integer mp_ho_t3105_ms := 100; /* Ny1 counter (see 3GPP TS 44.018, section 11.1.3) */