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.
This commit is contained in:
Tim-Philipp Müller 2015-04-18 12:00:13 +01:00
parent 072b1c6aba
commit 7fa81b5352

View file

@ -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); */