pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41809?usp=email )
Change subject: bts: TC_tx_power_ramp_adm_state_change: Fix Tguard too low sometimes triggering ......................................................................
bts: TC_tx_power_ramp_adm_state_change: Fix Tguard too low sometimes triggering
One can see with the following failing output below that the Tguard is too low: """ 13:36:12.459089 5684 BTS_Tests.ttcn:2836 Reached full power, wating a bit more until success 13:36:12.459097 5684 BTS_Tests.ttcn:2837 Start timer T: 2 s 13:36:14.358525 5684 Misc_Helpers.ttcn:35 setverdict(fail): pass -> fail reason: ""BTS_Tests.ttcn:729 : Tguard timeout"", new component reason: ""BTS_Tests.ttcn:729 : Tguard timeout"" """
Change-Id: I95448c732d08a30893cb958af79bf21c39ff10cb --- M bts/BTS_Tests.ttcn 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/09/41809/1
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn index c681da9..b060cbd 100644 --- a/bts/BTS_Tests.ttcn +++ b/bts/BTS_Tests.ttcn @@ -3035,7 +3035,7 @@ var ConnHdlr vc_conn; var ConnHdlrPars pars; f_init(); - pars := valueof(t_Pars(t_RslChanNr_Bm(0), ts_RSL_ChanMode_SIGN)); + pars := valueof(t_Pars(t_RslChanNr_Bm(0), ts_RSL_ChanMode_SIGN, t_guard := 60.0)); vc_conn := f_start_handler(refers(f_TC_tx_power_ramp_adm_state_change), pars, pcu_comp := false, trxc_comp := true); vc_conn.done;