mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 13:08:49 +00:00
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:
parent
072b1c6aba
commit
7fa81b5352
1 changed files with 1 additions and 1 deletions
|
@ -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); */
|
||||
|
|
Loading…
Reference in a new issue