aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2020-11-03 20:35:00 +0000
committerlaforge <laforge@osmocom.org>2020-11-09 10:52:52 +0000
commitdd59741dbe3517d463013f8080efebeb03d29a19 (patch)
tree0f6ce59b9120b4952dbcc5c16c0e460f20c39e3f
parentd34681bc6b31e316a599561cfafe16c9c83f3a5a (diff)
bts: fix TC_sacch_chan_act_ho_*: missing send SACCH FILL
The test sets random bits for SI5 and expects to see those in dl SACCH. That can only possibly work when that SI5 was actually sent to the BTS. Change-Id: I0d3a96f5ae932734e986637ca2cb23805eba6829
-rw-r--r--bts/BTS_Tests.ttcn3
1 files changed, 3 insertions, 0 deletions
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index c73981d9..0cfd7507 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -1232,6 +1232,7 @@ testcase TC_sacch_chan_act() runs on test_CT {
* see section 4.1.3 of 3GPP TS 48.058 */
private function f_TC_sacch_chan_act_ho_async(charstring id) runs on ConnHdlr {
var octetstring si5 := f_rnd_octstring(19);
+ RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_5, si5));
f_l1_tune(L1CTL);
RSL.clear;
@@ -1295,6 +1296,8 @@ testcase TC_sacch_chan_act_ho_async() runs on test_CT {
* see section 4.1.4 of 3GPP TS 48.058 */
private function f_TC_sacch_chan_act_ho_sync(charstring id) runs on ConnHdlr {
var octetstring si5 := f_rnd_octstring(19);
+ RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_5, si5));
+
var RSL_IE_List addl_ies;
f_l1_tune(L1CTL);