tests/check/gst/gstutils.c: Test case originally showed the problem fixed below, but was then amended. Add checks bac...

Original commit message from CVS:
* tests/check/gst/gstutils.c: (test_buffer_probe_n_times):
Test case originally showed the problem fixed below,
but was then amended. Add checks back at the place
where they used to be.
This commit is contained in:
Tim-Philipp Müller 2006-02-23 16:56:18 +00:00
parent 47f2709514
commit 2402343a7d
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2006-02-23 Tim-Philipp Müller <tim at centricular dot net>
* tests/check/gst/gstutils.c: (test_buffer_probe_n_times):
Test case originally showed the problem fixed below,
but was then amended. Add checks back at the place
where they used to be.
2006-02-23 Tim-Philipp Müller <tim at centricular dot net>
* libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),

View file

@ -94,6 +94,10 @@ GST_START_TEST (test_buffer_probe_n_times)
gst_element_set_state (pipeline, GST_STATE_NULL);
gst_object_unref (pipeline);
/* make sure nothing was sent in addition to the above when shutting down */
g_assert (n_buffer_probes == 10); /* one for every buffer */
g_assert (n_event_probes == 2); /* new segment and eos */
g_assert (n_data_probes == 12); /* duh */
} GST_END_TEST;
static int n_data_probes_once = 0;