summaryrefslogtreecommitdiff
path: root/testsuite/states
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-07-09 13:26:12 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-07-09 13:26:12 +0000
commitb645d7ab8c1ee3d582126b36a877eec0ac75706d (patch)
tree386bae9279217a441a1ff112767dfdccbaa9b7e4 /testsuite/states
parent683546fcb5a3fdd525edf52966d959bb7f933a2e (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.c3
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;
}