mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 12:10:37 +00:00
tests/check/gst/gstpad.c: Fix 'make check' too.
Original commit message from CVS: * tests/check/gst/gstpad.c: (test_get_allowed_caps): Fix 'make check' too.
This commit is contained in:
parent
d05f12e1d4
commit
4a911a8100
2 changed files with 6 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-01-11 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* tests/check/gst/gstpad.c: (test_get_allowed_caps):
|
||||
Fix 'make check' too.
|
||||
|
||||
2007-01-10 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* docs/design/part-negotiation.txt: Fix a typo, add a couple
|
||||
|
|
|
@ -161,9 +161,6 @@ GST_START_TEST (test_get_allowed_caps)
|
|||
ASSERT_CRITICAL (gst_pad_get_allowed_caps ((GstPad *) buffer));
|
||||
gst_buffer_unref (buffer);
|
||||
|
||||
sink = gst_pad_new ("sink", GST_PAD_SINK);
|
||||
ASSERT_CRITICAL (gst_pad_get_allowed_caps (sink));
|
||||
|
||||
src = gst_pad_new ("src", GST_PAD_SRC);
|
||||
fail_if (src == NULL);
|
||||
caps = gst_pad_get_allowed_caps (src);
|
||||
|
@ -171,6 +168,7 @@ GST_START_TEST (test_get_allowed_caps)
|
|||
|
||||
caps = gst_caps_from_string ("foo/bar");
|
||||
|
||||
sink = gst_pad_new ("sink", GST_PAD_SINK);
|
||||
gst_pad_set_caps (src, caps);
|
||||
gst_pad_set_caps (sink, caps);
|
||||
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
||||
|
|
Loading…
Reference in a new issue