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/.
Neels Hofmeyr gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/8077
bts: fix TC_dyn_osmo_pdch_double_act
Do not expect success on second activation.
Change-Id: I6b1ef158e1fdb32b392aa15bff71d0fe30ce6f1f
---
M bts/BTS_Tests.ttcn
1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/77/8077/1
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index a930dd2..a0ea3b2 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -2743,7 +2743,9 @@
f_init_pcu(PCU, id, pcu_conn_id, first_info);
f_dyn_osmo_pdch_act(pcu_conn_id, bts_nr, trx_nr);
- f_dyn_osmo_pdch_act(pcu_conn_id, bts_nr, trx_nr);
+ /* Send a second Chan Activ and expect it to be NACKed */
+ f_rsl_transceive(ts_RSL_CHAN_ACT(g_chan_nr, g_pars.chan_mode), tr_RSL_CHAN_ACT_NACK(g_chan_nr),
+ "RSL CHAN ACT NACK");
setverdict(pass);
}
testcase TC_dyn_osmo_pdch_double_act() runs on test_CT {
--
To view, visit https://gerrit.osmocom.org/8077
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I6b1ef158e1fdb32b392aa15bff71d0fe30ce6f1f
Gerrit-PatchSet: 1
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofmeyr at sysmocom.de>