GNOME Bugzilla – Bug 748101
tests: input selector unit test often fails under valgrind
Last modified: 2015-05-01 10:44:44 UTC
The input selector unit test frequently fails under valgrind, like this: elements/selector.c:525:F:general:test_input_selector_empty_stream:0: Assertion 'gst_pad_push_event (pad, gst_event_new_eos ())' failed Reproduce with: $ cd tests/check/ $ make elements/selector.valgrind-forever
Assuming this was fixed by commit 88a898080ac2285cb64954c3e89f734fda1baeab Author: Thiago Santos <thiagoss@osg.samsung.com> Date: Fri Apr 24 16:51:24 2015 -0300 inputselector: Only try to push the first EOS received Subsequent EOS will push on the source pad that already received EOS and that will make the event function return FALSE. It needs only to push the first one and only return TRUE for the subsequent ones.
Yes it was, thanks!