diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/cinterion/tests/test-modem-helpers-cinterion.c | 4 | ||||
-rw-r--r-- | plugins/thuraya/tests/test-mm-modem-helpers-thuraya.c | 8 |
2 files changed, 3 insertions, 9 deletions
diff --git a/plugins/cinterion/tests/test-modem-helpers-cinterion.c b/plugins/cinterion/tests/test-modem-helpers-cinterion.c index eef0a708..041736f6 100644 --- a/plugins/cinterion/tests/test-modem-helpers-cinterion.c +++ b/plugins/cinterion/tests/test-modem-helpers-cinterion.c @@ -699,7 +699,7 @@ common_test_slcc_urc (const gchar *urc, g_assert_no_error (error); g_assert (result); - g_print ("found %u calls\n", g_list_length (call_info_list)); + g_debug ("found %u calls", g_list_length (call_info_list)); if (expected_call_info_list) { g_assert (call_info_list); @@ -712,7 +712,7 @@ common_test_slcc_urc (const gchar *urc, gboolean found = FALSE; guint i; - g_print ("call at index %u: direction %s, state %s, number %s\n", + g_debug ("call at index %u: direction %s, state %s, number %s", call_info->index, mm_call_direction_get_string (call_info->direction), mm_call_state_get_string (call_info->state), diff --git a/plugins/thuraya/tests/test-mm-modem-helpers-thuraya.c b/plugins/thuraya/tests/test-mm-modem-helpers-thuraya.c index bc05b7c2..bf0d3b11 100644 --- a/plugins/thuraya/tests/test-mm-modem-helpers-thuraya.c +++ b/plugins/thuraya/tests/test-mm-modem-helpers-thuraya.c @@ -26,12 +26,6 @@ #include "mm-modem-helpers-thuraya.h" #include "mm-log.h" -#if defined ENABLE_TEST_MESSAGE_TRACES -#define trace(message, ...) g_print (message, ##__VA_ARGS__) -#else -#define trace(...) -#endif - /*****************************************************************************/ /* Test CPMS response */ @@ -62,7 +56,7 @@ test_cpms_response_thuraya (void *f, gpointer d) GArray *mem2 = NULL; GArray *mem3 = NULL; - trace ("\nTesting thuraya +CPMS=? response...\n"); + g_debug ("Testing thuraya +CPMS=? response..."); g_assert (mm_thuraya_3gpp_parse_cpms_test_response (reply, &mem1, &mem2, &mem3)); g_assert_cmpuint (mem1->len, ==, 5); |