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 <[email protected]>