diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-07-09 13:26:12 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-07-09 13:26:12 +0000 |
commit | b645d7ab8c1ee3d582126b36a877eec0ac75706d (patch) | |
tree | 386bae9279217a441a1ff112767dfdccbaa9b7e4 /testsuite/states | |
parent | 683546fcb5a3fdd525edf52966d959bb7f933a2e (diff) |
fixes 123774 - setting state on a bin should set state on children as well
Original commit message from CVS:
fixes 123774 - setting state on a bin should set state on children as well
Diffstat (limited to 'testsuite/states')
-rw-r--r-- | testsuite/states/parent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/states/parent.c b/testsuite/states/parent.c index 6e5421767..799433967 100644 --- a/testsuite/states/parent.c +++ b/testsuite/states/parent.c @@ -100,8 +100,9 @@ main (gint argc, gchar * argv[]) g_assert (GST_STATE (bin2) == GST_STATE_PAUSED); g_assert (GST_STATE (fakesrc) == GST_STATE_PAUSED); //FIXME: fix core so that this assert works - //g_assert (GST_STATE (identity) == GST_STATE_PAUSED); + g_assert (GST_STATE (identity) == GST_STATE_PAUSED); g_assert (GST_STATE (fakesink) == GST_STATE_PAUSED); + g_print ("passed.\n"); return 0; } |