fixeria has uploaded this change for review.
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/69/42069/1
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 41a2b57..d415c7e 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -3136,7 +3136,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).
@@ -3176,8 +3176,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)");
}
}
@@ -3201,8 +3201,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)");
}
}
To view, visit change 42069. To unsubscribe, or for help writing mail filters, visit settings.