From: Benjamin Otte Date: Tue, 20 Apr 2004 03:07:12 +0000 (+0000) Subject: testsuite/caps/filtercaps.c: fix test to test things correctly (caps are complicated) X-Git-Tag: RELEASE-0_8_2~179 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f524cd0689eba3f3e97ca93bd068e7914090b1d;p=platform%2Fupstream%2Fgstreamer.git testsuite/caps/filtercaps.c: fix test to test things correctly (caps are complicated) Original commit message from CVS: * testsuite/caps/filtercaps.c: (main): fix test to test things correctly (caps are complicated) --- diff --git a/ChangeLog b/ChangeLog index 65760fd..ed27e51 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2004-04-20 Benjamin Otte + * testsuite/caps/filtercaps.c: (main): + fix test to test things correctly (caps are complicated) + +2004-04-20 Benjamin Otte + * testsuite/caps/Makefile.am: * testsuite/caps/filtercaps.c: (main): add test (that doesn't work right now, but should) diff --git a/tests/old/testsuite/caps/filtercaps.c b/tests/old/testsuite/caps/filtercaps.c index acf3f91..3711bf7 100644 --- a/tests/old/testsuite/caps/filtercaps.c +++ b/tests/old/testsuite/caps/filtercaps.c @@ -32,9 +32,12 @@ main (gint argc, gchar ** argv) g_assert (sink); gst_element_link_filtered (identity, sink, gst_caps_new_simple ("audio/x-raw-int", NULL)); - caps = gst_pad_get_allowed_caps (gst_element_get_pad (identity, "sink")); - g_print ("caps: %s", gst_caps_to_string (caps)); + caps = gst_pad_get_caps (gst_element_get_pad (identity, "sink")); + g_print ("caps: %s\n", gst_caps_to_string (caps)); g_assert (!gst_caps_is_any (caps)); + caps = gst_pad_get_allowed_caps (gst_element_get_pad (identity, "sink")); + g_print ("allowed caps: %s\n", gst_caps_to_string (caps)); + g_assert (gst_caps_is_any (caps)); return 0; } diff --git a/testsuite/caps/filtercaps.c b/testsuite/caps/filtercaps.c index acf3f91..3711bf7 100644 --- a/testsuite/caps/filtercaps.c +++ b/testsuite/caps/filtercaps.c @@ -32,9 +32,12 @@ main (gint argc, gchar ** argv) g_assert (sink); gst_element_link_filtered (identity, sink, gst_caps_new_simple ("audio/x-raw-int", NULL)); - caps = gst_pad_get_allowed_caps (gst_element_get_pad (identity, "sink")); - g_print ("caps: %s", gst_caps_to_string (caps)); + caps = gst_pad_get_caps (gst_element_get_pad (identity, "sink")); + g_print ("caps: %s\n", gst_caps_to_string (caps)); g_assert (!gst_caps_is_any (caps)); + caps = gst_pad_get_allowed_caps (gst_element_get_pad (identity, "sink")); + g_print ("allowed caps: %s\n", gst_caps_to_string (caps)); + g_assert (gst_caps_is_any (caps)); return 0; }