tests/check/elements/.cvsignore: ignore more

Original commit message from CVS:
* tests/check/elements/.cvsignore:
ignore more
* tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
(GST_START_TEST):
try to narrow test failure
This commit is contained in:
Stefan Kost 2006-12-21 09:58:25 +00:00
parent 05e2413d3e
commit 63873698c3
3 changed files with 16 additions and 3 deletions

View file

@ -1,3 +1,12 @@
2006-12-21 Stefan Kost <ensonic@users.sf.net>
* tests/check/elements/.cvsignore:
ignore more
* tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
(GST_START_TEST):
try to narrow test failure
2006-12-21 David Schleef <ds@schleef.org>
* plugins/elements/gstfakesrc.c:

View file

@ -2,6 +2,7 @@
fakesrc
fakesink
fdsrc
identity
filesrc
identity
queue
*.check.xml

View file

@ -146,13 +146,16 @@ GST_START_TEST (test_non_leaky_overrun)
/* pushing gives away my reference ... */
gst_pad_push (mysrcpad, buffer1);
GST_DEBUG ("added 1st");
fail_unless (overrun_count == 0);
fail_unless (underrun_count == 0);
buffer2 = gst_buffer_new_and_alloc (4);
ASSERT_BUFFER_REFCOUNT (buffer2, "buffer", 1);
/* pushing gives away my reference ... */
gst_pad_push (mysrcpad, buffer2);
GST_DEBUG ("filled");
GST_DEBUG ("added 2nd");
fail_unless (overrun_count == 0);
fail_unless (underrun_count == 0);