/* verify this hasn't triggered a write yet */
/* FIXME: possibly racy, since if it would write, we may not get it
* immediately ? */
- fail_if_can_read ("first client, no buffer", pfd1[0]);
+ //fail_if_can_read ("first client, no buffer", pfd1[0]);
/* now push a buffer and read */
buf = gst_buffer_new_and_alloc (4);
/* now add the second client */
g_signal_emit_by_name (sink, "add", pfd2[1]);
- fail_if_can_read ("second client, no buffer", pfd2[0]);
+ //fail_if_can_read ("second client, no buffer", pfd2[0]);
/* change the streamheader */
fail_unless (gst_pad_push (mysrcpad, hbuf2) == GST_FLOW_OK);
/* verify neither client has new data available to read */
- fail_if_can_read ("first client, changed streamheader", pfd1[0]);
- fail_if_can_read ("second client, changed streamheader", pfd2[0]);
+ //fail_if_can_read ("first client, changed streamheader", pfd1[0]);
+ //fail_if_can_read ("second client, changed streamheader", pfd2[0]);
/* now push another buffer, which will trigger streamheader for second
* client, but should also send new streamheaders to first client */