mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 07:09:56 +00:00
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:
parent
05e2413d3e
commit
63873698c3
3 changed files with 16 additions and 3 deletions
|
@ -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:
|
||||
|
|
3
tests/check/elements/.gitignore
vendored
3
tests/check/elements/.gitignore
vendored
|
@ -2,6 +2,7 @@
|
|||
fakesrc
|
||||
fakesink
|
||||
fdsrc
|
||||
identity
|
||||
filesrc
|
||||
identity
|
||||
queue
|
||||
*.check.xml
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue