From: Sebastian Dröge Date: Mon, 30 Jun 2008 09:42:43 +0000 (+0000) Subject: tests/check/libs/gdp.c: Also enable the GDP unit test again on PPC now that the bug... X-Git-Tag: RELEASE-0_10_21~112 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b30e78f7a80c3e6c0f80f0e407a72c94502c7813;p=platform%2Fupstream%2Fgstreamer.git tests/check/libs/gdp.c: Also enable the GDP unit test again on PPC now that the bug is fixed. Original commit message from CVS: * tests/check/libs/gdp.c: (gst_dp_suite): Also enable the GDP unit test again on PPC now that the bug is fixed. --- diff --git a/ChangeLog b/ChangeLog index 19a5682..e0b7bde 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2008-06-30 Sebastian Dröge + * tests/check/libs/gdp.c: (gst_dp_suite): + Also enable the GDP unit test again on PPC now that the bug + is fixed. + +2008-06-30 Sebastian Dröge + * libs/gst/dataprotocol/dataprotocol.c: Don't write to the same region of memory as a uint64 and uint16 as this breaks strict aliasing rules and apparantly breaks on PPC diff --git a/tests/check/libs/gdp.c b/tests/check/libs/gdp.c index c0edf24..d363cd0 100644 --- a/tests/check/libs/gdp.c +++ b/tests/check/libs/gdp.c @@ -91,8 +91,6 @@ GST_END_TEST; #ifndef GST_REMOVE_DEPRECATED /* these tests use deprecated API, that we disable by default */ -#ifndef HAVE_CPU_PPC64 /* this test doesn't work on PPC64. See #348114 */ - /* test creation of header from buffer and back again */ GST_START_TEST (test_buffer) { @@ -156,7 +154,6 @@ GST_START_TEST (test_buffer) } GST_END_TEST; -#endif GST_START_TEST (test_caps) { @@ -418,9 +415,7 @@ gst_dp_suite (void) suite_add_tcase (s, tc_chain); tcase_add_test (tc_chain, test_conversion); #ifndef GST_REMOVE_DEPRECATED -#ifndef HAVE_CPU_PPC64 tcase_add_test (tc_chain, test_buffer); -#endif tcase_add_test (tc_chain, test_caps); tcase_add_test (tc_chain, test_event); tcase_add_test (tc_chain, test_memory);