laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42069?usp=email )
Change subject: bts: TC_rsl_ms_pwr_dyn_ass_updown: misc improvements ......................................................................
bts: TC_rsl_ms_pwr_dyn_ass_updown: misc improvements
Change-Id: Iae3fa5f09d68bd472f7236bf882f5b168d87384a Related: OS#6945 --- M bts/BTS_Tests.ttcn 1 file changed, 5 insertions(+), 5 deletions(-)
Approvals: laforge: Looks good to me, approved pespin: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn index 3b820c0..9646df4 100644 --- a/bts/BTS_Tests.ttcn +++ b/bts/BTS_Tests.ttcn @@ -3123,7 +3123,7 @@
/* Test if dynamic MS power control can reduce and increase MS power based on UL RxLev */ private function f_TC_rsl_ms_pwr_dyn_ass_updown(charstring id) runs on ConnHdlr { - var uint5_t pwr_var := 7; + const uint5_t pwr_var := 7; var SacchL1Header l1h;
/* Simulate a good C/I value of 15 dB (default thresh 13..17 dB). @@ -3163,8 +3163,8 @@ } [] L1CTL.receive { repeat; } [] T2.timeout { - Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, - "Power Level in L1 header has not increased sufficiently"); + Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, + "MS Power Level has not reached 13 (4 dBm)"); } }
@@ -3188,8 +3188,8 @@ } [] L1CTL.receive { repeat; } [] T4.timeout { - Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, - "Power Level in L1 header has not decreased sufficiently"); + Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, + "MS Power Level has not reached 7 (16 dBm)"); } }