Change in osmo-ttcn3-hacks[master]: bts: TC_pcu_{time, rts}_ind: Higher tolerances

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

Harald Welte gerrit-no-reply at lists.osmocom.org
Tue May 28 10:19:18 UTC 2019


Harald Welte has uploaded this change for review. ( https://gerrit.osmocom.org/14220


Change subject: bts: TC_pcu_{time,rts}_ind: Higher tolerances
......................................................................

bts: TC_pcu_{time,rts}_ind: Higher tolerances

When executing the test on our build slaves, we ran into the following:

> Number of TDMA Frames (1100) not matching (1073 .. 1093)
> Number of TDMA Frames (1096) not matching (1073 .. 1093)

So it seems the tolerance was a bit too tight.  If the timer runs
for a bit more than the requested amount of seconds (e.g. due to
high system load), the number of TDMA frames is likely a bit higher
and hence we need to permit a larger tolerance.

Change-Id: Ib00bb7e7f223fb0329d00e3835127b8c31299e27
---
M bts/BTS_Tests.ttcn
1 file changed, 2 insertions(+), 2 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/20/14220/1

diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 6786d68..968ed6c 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -3713,7 +3713,7 @@
 	/* verify the number of frames expired matches our expectation */
 	const float c_GSM_FN_DURATION_MS := 4.61538;
 	var float fn_expected := test_duration * 1000.0 / c_GSM_FN_DURATION_MS;
-	var template integer t_fn_expected := f_tolerance(float2int(fn_expected), 1, 100000, 10);
+	var template integer t_fn_expected := f_tolerance(float2int(fn_expected), 1, 100000, 20);
 	if (not match(fn_expired, t_fn_expected)) {
 		setverdict(fail, "Number of TDMA Frames (", fn_expired, ") not matching ", t_fn_expected);
 	}
@@ -3778,7 +3778,7 @@
 	/* verify the number of frames expired matches our expectation */
 	const float c_GSM_FN_DURATION_MS := 4.61538;
 	var float fn_expected := test_duration * 1000.0 / c_GSM_FN_DURATION_MS;
-	var template integer t_fn_expected := f_tolerance(float2int(fn_expected), 1, 100000, 10);
+	var template integer t_fn_expected := f_tolerance(float2int(fn_expected), 1, 100000, 20);
 	if (not match(fn_expired, t_fn_expected)) {
 		setverdict(fail, "Number of TDMA Frames (", fn_expired, ") not matching ", t_fn_expected);
 	}

-- 
To view, visit https://gerrit.osmocom.org/14220
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib00bb7e7f223fb0329d00e3835127b8c31299e27
Gerrit-Change-Number: 14220
Gerrit-PatchSet: 1
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20190528/5f638f0a/attachment.htm>


More information about the gerrit-log mailing list