diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2003-06-13 20:54:02 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2003-06-13 20:54:02 +0000 |
commit | 20ada5358090fb94897c0c550ff06b30a445d875 (patch) | |
tree | d818358391e0f8787137a5c5050062b2c2418528 /testsuite | |
parent | 6ebefb6ab38bc35fa2c18c8fda7a88aa27517d67 (diff) |
- some more checks
Original commit message from CVS:
- some more checks
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/caps/fixed.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/caps/fixed.c b/testsuite/caps/fixed.c index 06b23ac00..045c6b1d7 100644 --- a/testsuite/caps/fixed.c +++ b/testsuite/caps/fixed.c @@ -74,6 +74,12 @@ main (gint argc, gchar *argv[]) /* caps too */ g_assert (!GST_CAPS_IS_FIXED (caps)); + gst_props_set (props, "foo", GST_PROPS_INT (5)); + /* props should be fixed again now */ + g_assert (GST_PROPS_IS_FIXED (props)); + /* caps too */ + g_assert (GST_CAPS_IS_FIXED (caps)); + return 0; } |