tests/check/elements/gdpdepay.c: Make test compile without unused function/variable warnings on PPC.

Original commit message from CVS:
* tests/check/elements/gdpdepay.c:
Make test compile without unused function/variable warnings on PPC.
This commit is contained in:
Tim-Philipp Müller 2008-03-23 13:12:41 +00:00
parent 49deb0c05d
commit 84c8a873f9
3 changed files with 13 additions and 7 deletions

View file

@ -1,3 +1,8 @@
2008-03-23 Tim-Philipp Müller <tim at centricular dot net>
* tests/check/elements/gdpdepay.c:
Make test compile without unused function/variable warnings on PPC.
2008-03-22 Sebastian Dröge <slomo@circular-chaos.org>
* configure.ac:

2
common

@ -1 +1 @@
Subproject commit 9a358e5cc3977fd6121f12dd25a358081fd77041
Subproject commit 4221e9dcb05faa6f6f7ba19bba32fe90da4577dd

View file

@ -279,8 +279,6 @@ setup_gdpdepay_streamheader (void)
return gdpdepay;
}
#ifndef HAVE_CPU_PPC64 /* Test known to fail on PPC64. See #348114 */
/* this tests deserialization of a GDP stream where the serialized caps
* have a streamheader set */
GST_START_TEST (test_streamheader)
@ -398,8 +396,6 @@ GST_START_TEST (test_streamheader)
GST_END_TEST;
#endif /* ifndef HAVE_CPU_PPC64 */
static Suite *
gdpdepay_suite (void)
{
@ -409,9 +405,14 @@ 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);
#ifndef HAVE_CPU_PPC64 /* Test known to fail on PPC64. See #348114 */
tcase_add_test (tc_chain, test_streamheader);
#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);
return s;
}