From 7fa81b53527990640227e99dfe4e83cd3a3f8372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 18 Apr 2015 12:00:13 +0100 Subject: [PATCH] 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. --- tests/check/gst/gstinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/gst/gstinfo.c b/tests/check/gst/gstinfo.c index 595b90845e..2f1ca72a22 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); */