From: Tim-Philipp Müller Date: Sat, 18 Apr 2015 11:00:13 +0000 (+0100) Subject: tests: info: fix unit test when run with GST_DEBUG=*:9 X-Git-Tag: 1.6.1~375 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7fa81b53527990640227e99dfe4e83cd3a3f8372;p=platform%2Fupstream%2Fgstreamer.git tests: info: fix unit test when run with GST_DEBUG=*:9 Only save the messages we're interested in and expecting. When run with *:9 we might get additional TRACE level messages from other categories and then we don't end up with the number of messages we expect. --- diff --git a/tests/check/gst/gstinfo.c b/tests/check/gst/gstinfo.c index 595b908..2f1ca72 100644 --- a/tests/check/gst/gstinfo.c +++ b/tests/check/gst/gstinfo.c @@ -39,7 +39,7 @@ printf_extension_log_func (GstDebugCategory * category, dbg_msg = gst_debug_message_get (message); fail_unless (dbg_msg != NULL); - if (save_messages) + if (save_messages && g_str_equal (category->name, "check")) messages = g_list_append (messages, g_strdup (dbg_msg)); /* g_print ("%s\n", dbg_msg); */