From 67131eaadbc0ce1bae33808c8e24a3be2b2a7f06 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 14 Jun 2007 19:53:27 +0000 Subject: [PATCH] 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. --- ChangeLog | 7 +++++++ tests/check/pipelines/streamheader.c | 12 +++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ffc44f8..c60fd9e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2007-06-14 Tim-Philipp Müller + + * 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 * gst/playback/gstqueue2.c: (gst_queue_create_read): diff --git a/tests/check/pipelines/streamheader.c b/tests/check/pipelines/streamheader.c index ea9d9ee..d581482 100644 --- a/tests/check/pipelines/streamheader.c +++ b/tests/check/pipelines/streamheader.c @@ -20,6 +20,10 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include @@ -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; -- 2.7.4