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:
Tim-Philipp Müller 2007-06-14 19:53:27 +00:00
parent be1f78d2e2
commit 67131eaadb
2 changed files with 18 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2007-06-14 Tim-Philipp Müller <tim at centricular dot net>
* 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.
2007-06-13 Edward Hervey <edward@fluendo.com>
* gst/playback/gstqueue2.c: (gst_queue_create_read):

View file

@ -20,6 +20,10 @@
* Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <unistd.h>
#include <gst/check/gstcheck.h>
@ -108,6 +112,7 @@ GST_END_TEST;
* exactly three in_caps buffers for the three header packets */
static int n_in_caps = 0;
gboolean
buffer_probe_cb (GstPad * pad, GstBuffer * buffer)
{
@ -212,7 +217,12 @@ streamheader_suite (void)
suite_add_tcase (s, tc_chain);
#ifndef GST_DISABLE_PARSE
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
return s;