msc_vlr_test: remove DLMGCP log messages from unit test output

The log output of libosmo-mgcp-client has changed. This change causes
the unit tests to fail because the log output does not match anymore.
Lets disable the DLMGCP log output since it is of minor importance
for VLR testing anyway.

Change-Id: Id197e4ab9ba12e284299ef520edee9c362513bf1
Related: SYS#5091
This commit is contained in:
Philipp Maier 2021-09-14 11:18:46 +02:00
parent 35ff852379
commit ce1f973283
13 changed files with 1 additions and 12 deletions

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_auth_use_twice_geran
- Location Update request causes a GSUP Send Auth Info request to HLR
MSC <--GERAN-A-- MS: GSM48_MT_MM_LOC_UPD_REQUEST

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_call_mo
- Total time passed: 0.000000 s
- Location Update request causes a GSUP Send Auth Info request to HLR

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_gsm_authen
- Location Update request causes a GSUP Send Auth Info request to HLR
MSC <--GERAN-A-- MS: GSM48_MT_MM_LOC_UPD_REQUEST

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_ciph
- Location Update request causes a GSUP Send Auth Info request to HLR
MSC <--GERAN-A-- MS: GSM48_MT_MM_LOC_UPD_REQUEST

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_hlr_rej_auth_info_unknown_imsi
- Location Update request causes a GSUP Send Auth Info request to HLR
MSC <--GERAN-A-- MS: GSM48_MT_MM_LOC_UPD_REQUEST

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_hlr_timeout_lu_auth_info
- Total time passed: 0.000000 s
- Location Update request causes a GSUP Send Auth Info request to HLR

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_ms_timeout_lu_auth_resp
- Total time passed: 0.000000 s
- Location Update request causes a GSUP Send Auth Info request to HLR

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_no_authen
- Location Update request causes a GSUP LU request to HLR
MSC <--GERAN-A-- MS: GSM48_MT_MM_LOC_UPD_REQUEST

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_reject_2nd_conn
- Location Update Request on one connection
MSC <--GERAN-A-- MS: GSM48_MT_MM_LOC_UPD_REQUEST

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_cm_service_without_lu
- CM Service Request without a prior Location Updating
MSC <--GERAN-A-- MS: GSM48_MT_MM_CM_SERV_REQ

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_ss_ussd_mo_geran
- Location Update request causes a GSUP LU request to HLR
MSC <--GERAN-A-- MS: GSM48_MT_MM_LOC_UPD_REQUEST

View File

@ -1,4 +1,3 @@
DLMGCP MGCP client: using endpoint domain '@mgw'
===== test_umts_authen_geran
- Location Update request causes a GSUP Send Auth Info request to HLR
MSC <--GERAN-A-- MS: GSM48_MT_MM_LOC_UPD_REQUEST

View File

@ -1194,6 +1194,7 @@ int main(int argc, char **argv)
log_set_print_category(osmo_stderr_target, 1);
log_set_print_category_hex(osmo_stderr_target, 0);
log_set_category_filter(osmo_stderr_target, DLSMS, 1, LOGL_DEBUG);
log_set_category_filter(osmo_stderr_target, DLMGCP, 0, LOGL_NOTICE);
if (cmdline_opts.verbose) {
log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_BASENAME);