tests/check/: Enable unit tests on PPC again as the bugs are now fixed.

Original commit message from CVS:
* tests/check/elements/gdpdepay.c: (gdpdepay_suite):
* tests/check/pipelines/streamheader.c: (streamheader_suite):
Enable unit tests on PPC again as the bugs are now fixed.
This commit is contained in:
Sebastian Dröge 2008-06-30 09:46:15 +00:00
parent 1aca2efee8
commit 59a0c5373d
3 changed files with 8 additions and 13 deletions

View file

@ -1,3 +1,9 @@
2008-06-30 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* tests/check/elements/gdpdepay.c: (gdpdepay_suite):
* tests/check/pipelines/streamheader.c: (streamheader_suite):
Enable unit tests on PPC again as the bugs are now fixed.
2008-06-30 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* gst-libs/gst/riff/riff-ids.h:

View file

@ -405,13 +405,7 @@ gdpdepay_suite (void)
suite_add_tcase (s, tc_chain);
tcase_add_test (tc_chain, test_audio_per_byte);
tcase_add_test (tc_chain, test_audio_in_one_buffer);
#ifdef HAVE_CPU_PPC64 /* Test known to fail on PPC64. See #348114 */
g_print ("\n\n***** skipping test test_streamheader. May fail "
"on PPC due to a 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_streamheader);
tcase_add_test (tc_chain, test_streamheader);
return s;
}

View file

@ -219,12 +219,7 @@ streamheader_suite (void)
#ifndef GST_DISABLE_PARSE
tcase_add_test (tc_chain, test_multifdsink_gdp_tag);
#ifdef HAVE_VORBIS
#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);
tcase_add_test (tc_chain, test_multifdsink_gdp_vorbisenc);
#endif
#endif