aboutsummaryrefslogtreecommitdiffstats
path: root/bts
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-10-24 15:22:19 +0700
committerlaforge <laforge@osmocom.org>2019-11-06 04:56:35 +0000
commit970b153d4bca4f7023f207d1166aad381da23086 (patch)
treedba5461b7134e3f34ae350f93c3d5e576a3c6efa /bts
parent8f77363ea3776c77eb1d5e6195ca5ed05d6506fc (diff)
BTS_Tests.ttcn: fix: move TC_pcu_ptcch to a proper place
We have a module parameter 'mp_l1_supports_gprs' that indicates whether the L1 back-end (trxcon, virt_phy, or Calypso) does support PDCH and TBF management. The TC_pcu_ptcch does not require support of TBF management, only PDCH (namely PTCCH) needs to be supported. This is already implemented in trxcon, and can be easily implemented for Calypso. Change-Id: Id2e751e825a7a5128bc3f2e4677d8ef31174b501
Diffstat (limited to 'bts')
-rw-r--r--bts/BTS_Tests.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 90281e3f..25721e30 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -6356,7 +6356,6 @@ control {
execute( TC_pcu_deact_req_wrong_ts() );
execute( TC_pcu_ver_si13() );
if (mp_l1_supports_gprs) {
- execute( TC_pcu_ptcch() );
execute( TC_pcu_data_req_pdtch() );
execute( TC_pcu_data_req_ptcch() );
execute( TC_pcu_data_req_wrong_bts() );
@@ -6364,6 +6363,7 @@ control {
execute( TC_pcu_data_req_wrong_ts() );
execute( TC_pcu_data_req_ts_inactive() );
}
+ execute( TC_pcu_ptcch() );
execute( TC_pcu_data_req_agch() );
execute( TC_pcu_data_req_pch() );
execute( TC_pcu_data_req_imm_ass_pch() );