aboutsummaryrefslogtreecommitdiffstats
path: root/bsc/BSC_Tests.ttcn
diff options
context:
space:
mode:
Diffstat (limited to 'bsc/BSC_Tests.ttcn')
-rw-r--r--bsc/BSC_Tests.ttcn21
1 files changed, 20 insertions, 1 deletions
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index ee4ecef9..e762c128 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -1129,7 +1129,7 @@ runs on test_CT {
* We could stop as soon as all expected SI are received, but then we might miss SI that we don't expect and
* that might be sent afterwards. So rather give a generous timeout and be quite sure to catch all SI.
*/
- f_sleep(5.0);
+ f_sleep(1.0);
log("RSL ", bts_idx, " SYSTEM INFORMATION: ", g_system_information[bts_idx]);
deactivate(sysinfo);
@@ -8139,6 +8139,24 @@ testcase TC_ho_during_lcs_loc_req() runs on test_CT {
*/
control {
+if (true) {
+ execute( TC_assignment_emerg_setup_allow() );
+ execute( TC_assignment_emerg_setup_deny_msc() );
+ execute( TC_assignment_emerg_setup_deny_bts() );
+ execute( TC_emerg_premption() );
+ if (mp_enable_lcs_tests) {
+ execute( TC_lcs_loc_req_for_active_ms() );
+ execute( TC_lcs_loc_req_for_active_ms_ta_req() );
+ execute( TC_lcs_loc_req_for_idle_ms() );
+ execute( TC_lcs_loc_req_no_subscriber() );
+ execute( TC_lcs_loc_req_for_active_ms_le_timeout() );
+ execute( TC_lcs_loc_req_for_active_ms_le_timeout2() );
+ execute( TC_lcs_loc_req_for_idle_ms_no_pag_resp() );
+ execute( TC_cm_service_during_lcs_loc_req() );
+ execute( TC_ho_during_lcs_loc_req() );
+ }
+
+} else {
/* CTRL interface testing */
execute( TC_ctrl_msc_connection_status() );
execute( TC_ctrl_msc0_connection_status() );
@@ -8386,5 +8404,6 @@ control {
execute( TC_ho_during_lcs_loc_req() );
}
}
+}
}