bts: TC_sacch_chan_act_ho_*: test that SACCH appears after HO RACH

Change-Id: I33bb56c5f51dcc79adc1fe39926cf152aac1e213
This commit is contained in:
Neels Hofmeyr 2020-11-09 00:03:33 +00:00 committed by laforge
parent dd59741dbe
commit 76d1d1a815
1 changed files with 30 additions and 0 deletions

View File

@ -1255,6 +1255,11 @@ private function f_TC_sacch_chan_act_ho_async(charstring id) runs on ConnHdlr {
/* Verify that no DL SACCH is being received */
f_sacch_missing(?);
/* Send handover Access Burst and expect SACCH to start */
f_L1CTL_RACH(L1CTL, ho_ref, chan_nr := g_pars.chan_nr);
f_sacch_present(si5);
f_rsl_chan_deact();
f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
@ -1274,6 +1279,11 @@ private function f_TC_sacch_chan_act_ho_async(charstring id) runs on ConnHdlr {
/* Verify that DL SACCH is being received */
f_sacch_present(si5);
/* Send handover Access Burst and expect SACCH to remain present */
f_L1CTL_RACH(L1CTL, ho_ref, chan_nr := g_pars.chan_nr);
f_sacch_present(si5);
f_rsl_chan_deact();
f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
}
@ -1321,6 +1331,11 @@ private function f_TC_sacch_chan_act_ho_sync(charstring id) runs on ConnHdlr {
/* Verify that no DL SACCH is being received */
f_sacch_missing(?);
/* Send handover Access Burst and expect SACCH to start */
f_L1CTL_RACH(L1CTL, ho_ref, chan_nr := g_pars.chan_nr);
f_sacch_present(si5);
f_rsl_chan_deact();
f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
@ -1340,6 +1355,11 @@ private function f_TC_sacch_chan_act_ho_sync(charstring id) runs on ConnHdlr {
/* Verify that no DL SACCH is being received */
f_sacch_missing(?);
/* Send handover Access Burst and expect SACCH to start */
f_L1CTL_RACH(L1CTL, ho_ref, chan_nr := g_pars.chan_nr);
f_sacch_present(si5);
f_rsl_chan_deact();
f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
@ -1359,6 +1379,11 @@ private function f_TC_sacch_chan_act_ho_sync(charstring id) runs on ConnHdlr {
/* Verify that no DL SACCH is being received */
f_sacch_missing(?);
/* Send handover Access Burst and expect SACCH to start */
f_L1CTL_RACH(L1CTL, ho_ref, chan_nr := g_pars.chan_nr);
f_sacch_present(si5);
f_rsl_chan_deact();
f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
@ -1379,6 +1404,11 @@ private function f_TC_sacch_chan_act_ho_sync(charstring id) runs on ConnHdlr {
/* Verify that DL SACCH is being received */
f_sacch_present(si5);
/* Send handover Access Burst and expect SACCH to remain present */
f_L1CTL_RACH(L1CTL, ho_ref, chan_nr := g_pars.chan_nr);
f_sacch_present(si5);
f_rsl_chan_deact();
f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
}