aboutsummaryrefslogtreecommitdiffstats
path: root/bts
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2020-01-08 13:41:41 +0100
committerlaforge <laforge@osmocom.org>2020-01-12 13:15:54 +0000
commit15cd6870c5a8c28e12d009e6e7f757c3c12d3977 (patch)
treeb5b6b4f140a5853257dc20a9cbb2c48b41999636 /bts
parenta42745c93bfe5678303390ea4efe45464db341f4 (diff)
BTS_Tests: skip tests that need PCU socket access
Some tests need direct access to the pcu socket, however, when working with hardware bts this socket is not always available. The tests that depend on the pcu socket are then skipped by the testsuite. The following tests are not automatically excluded, but require direct PCU access. Lets exclude them as well: - TC_dyn_osmo_pdch_act_deact - TC_dyn_osmo_pdch_double_act - TC_dyn_ipa_pdch_act_deact - TC_dyn_ipa_pdch_act_tchf_act_nack Change-Id: I735b85d2ff3f541ebf0a558735d6172d69e7c29f Related: OS#3863
Diffstat (limited to 'bts')
-rw-r--r--bts/BTS_Tests.ttcn9
1 files changed, 5 insertions, 4 deletions
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 3683306d..7fa1af6c 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -6465,19 +6465,20 @@ control {
execute( TC_pcu_socket_connect_si3gprs() );
execute( TC_pcu_socket_disconnect_nosi3gprs() );
execute( TC_pcu_socket_verify_info_ind() );
+ execute( TC_dyn_osmo_pdch_act_deact() );
+ execute( TC_dyn_osmo_pdch_double_act() );
+ execute( TC_dyn_ipa_pdch_act_deact() );
+ execute( TC_dyn_ipa_pdch_act_tchf_act_nack() );
+
} else {
log("PCU socket path not available, skipping PCU tests");
}
- execute( TC_dyn_osmo_pdch_act_deact() );
execute( TC_dyn_osmo_pdch_unsol_deact() );
- execute( TC_dyn_osmo_pdch_double_act() );
execute( TC_dyn_osmo_pdch_tchf_act() );
execute( TC_dyn_osmo_pdch_tchh_act() );
- execute( TC_dyn_ipa_pdch_act_deact() );
execute( TC_dyn_ipa_pdch_tchf_act() );
execute( TC_dyn_ipa_pdch_tchf_act_pdch_act_nack() );
- execute( TC_dyn_ipa_pdch_act_tchf_act_nack() );
execute( TC_rll_est_ind() );
execute( TC_rll_est_req_DCCH_3() );