mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-02 09:51:11 +00:00
tests/check/pipelines/streamheader.c: Disable test_multifdsink_gdp_vorbisenc() on ppc64 since it fails on the p5-ppc6...
Original commit message from CVS: * tests/check/pipelines/streamheader.c: (streamheader_suite): Disable test_multifdsink_gdp_vorbisenc() on ppc64 since it fails on the p5-ppc64 build bot and the failure looks like it is due to the same issue as #348114, ie. a compiler bug.
This commit is contained in:
parent
5b15ce712b
commit
1abce7d510
1 changed files with 11 additions and 1 deletions
|
@ -20,6 +20,10 @@
|
||||||
* Boston, MA 02111-1307, USA.
|
* Boston, MA 02111-1307, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include <gst/check/gstcheck.h>
|
#include <gst/check/gstcheck.h>
|
||||||
|
@ -108,6 +112,7 @@ GST_END_TEST;
|
||||||
* exactly three in_caps buffers for the three header packets */
|
* exactly three in_caps buffers for the three header packets */
|
||||||
|
|
||||||
static int n_in_caps = 0;
|
static int n_in_caps = 0;
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
buffer_probe_cb (GstPad * pad, GstBuffer * buffer)
|
buffer_probe_cb (GstPad * pad, GstBuffer * buffer)
|
||||||
{
|
{
|
||||||
|
@ -212,7 +217,12 @@ streamheader_suite (void)
|
||||||
suite_add_tcase (s, tc_chain);
|
suite_add_tcase (s, tc_chain);
|
||||||
#ifndef GST_DISABLE_PARSE
|
#ifndef GST_DISABLE_PARSE
|
||||||
tcase_add_test (tc_chain, test_multifdsink_gdp_tag);
|
tcase_add_test (tc_chain, test_multifdsink_gdp_tag);
|
||||||
tcase_add_test (tc_chain, test_multifdsink_gdp_vorbisenc);
|
#ifdef HAVE_CPU_PPC64
|
||||||
|
g_print ("\n\n***** skipping test test_multifdsink_gdp_vorbisenc. May fail "
|
||||||
|
"on PPC64 due to compiler bug. See bug #348114 for details\n\n\n");
|
||||||
|
if (0) /* this avoids the 'function not used' warning */
|
||||||
|
#endif
|
||||||
|
tcase_add_test (tc_chain, test_multifdsink_gdp_vorbisenc);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
|
|
Loading…
Reference in a new issue