From 609f1d6c10253ec53605df0c5731c19b45c85bd4 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 15 Sep 2020 16:01:55 +0200 Subject: msc: Introduce module param to disable crashing test in latest Otherwise all tests run after ruing MSC_Tests_Iu.control fail. Change-Id: I46f1066323e19dfe708402a8c9c68e257f62751c --- msc/MSC_Tests.ttcn | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'msc/MSC_Tests.ttcn') diff --git a/msc/MSC_Tests.ttcn b/msc/MSC_Tests.ttcn index f6e85779..fb2a46ed 100644 --- a/msc/MSC_Tests.ttcn +++ b/msc/MSC_Tests.ttcn @@ -164,6 +164,8 @@ modulepar { }; boolean mp_enable_cell_id_test := true; + + boolean mp_enable_crashing_tests := true; } /* altstep for the global guard timer (only used when BSSAP_DIRECT @@ -6437,15 +6439,16 @@ control { execute( TC_lu_imsi_noauth_notmsi_check_imei_early() ); execute( TC_lu_imsi_auth_tmsi_check_imei_early_nack() ); execute( TC_lu_imsi_auth_tmsi_check_imei_early_err() ); - - /* Run this last: at the time of writing this test crashes the MSC */ execute( TC_lu_imsi_auth_tmsi_encr_3_1_log_msc_debug() ); + execute( TC_mo_cc_bssmap_clear() ); execute( TC_invalid_mgcp_crash() ); execute( TC_mm_id_resp_no_identity() ); execute( TC_lu_and_expire_while_paging() ); - execute( TC_paging_response_imsi_unknown() ); - execute( TC_paging_response_tmsi_unknown() ); + if (mp_enable_crashing_tests) { + execute( TC_paging_response_imsi_unknown() ); + execute( TC_paging_response_tmsi_unknown() ); + } } -- cgit v1.2.3