tests/check/: Enable unit tests on PPC again as the bugs are now fixed.
authorSebastian Dröge <slomo@circular-chaos.org>
Mon, 30 Jun 2008 09:46:15 +0000 (09:46 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Tue, 11 Sep 2012 00:54:32 +0000 (01:54 +0100)
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.

tests/check/elements/gdpdepay.c
tests/check/pipelines/streamheader.c

index b88d32b986cb75c8534b6fdfe7c0249003851fda..60bc1aed122c600f78895c92fa252606e1879b66 100644 (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;
 }
index 806eecb41c3b800537fc87d6e8b6028d2cc60058..aa48308088591294cc5b3b3a2aec3e7d619a42f3 100644 (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