From: Wim Taymans Date: Tue, 28 Feb 2012 11:51:27 +0000 (+0100) Subject: tests: fix unit test X-Git-Tag: RELEASE-0.11.3~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=549347f81ce30d2dae245691001a8fb9047ad0fd;p=platform%2Fupstream%2Fgstreamer.git tests: fix unit test --- diff --git a/tests/check/gst/gstmeta.c b/tests/check/gst/gstmeta.c index 32469b1..1ca52d6 100644 --- a/tests/check/gst/gstmeta.c +++ b/tests/check/gst/gstmeta.c @@ -116,13 +116,14 @@ static const GstMetaInfo * gst_meta_test_get_info (void) { static const GstMetaInfo *meta_test_info = NULL; + static const gchar *tags[] = { "timing", NULL }; if (meta_test_info == NULL) { meta_test_info = gst_meta_register ("GstMetaTest", "GstMetaTest", sizeof (GstMetaTest), (GstMetaInitFunction) test_init_func, (GstMetaFreeFunction) test_free_func, - (GstMetaTransformFunction) test_transform_func); + (GstMetaTransformFunction) test_transform_func, tags); } return meta_test_info; }