libs/gst/base/gstbasetransform.c: Extra debug output
authorJan Schmidt <thaytan@mad.scientist.com>
Thu, 27 Jul 2006 14:32:01 +0000 (14:32 +0000)
committerJan Schmidt <thaytan@mad.scientist.com>
Thu, 27 Jul 2006 14:32:01 +0000 (14:32 +0000)
Original commit message from CVS:
* libs/gst/base/gstbasetransform.c: (gst_base_transform_setcaps):
Extra debug output
* tests/check/libs/gdp.c: (gst_dp_suite):
Take a whack at fixing the ppc compile using a different define to
disable the broken test.
* tests/check/pipelines/parse-launch.c: (GST_START_TEST):
Remove excess g_print()

ChangeLog
libs/gst/base/gstbasetransform.c
tests/check/libs/gdp.c
tests/check/pipelines/parse-launch.c

index 6f960eb..d70da9b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2006-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
+
+       * libs/gst/base/gstbasetransform.c: (gst_base_transform_setcaps):
+       Extra debug output
+       * tests/check/libs/gdp.c: (gst_dp_suite):
+       Take a whack at fixing the ppc compile using a different define to
+       disable the broken test.
+
+       * tests/check/pipelines/parse-launch.c: (GST_START_TEST):
+       Remove excess g_print()
+
 2006-07-27  Jan Schmidt <thaytan@mad.scientist.com>
 
        * tests/check/pipelines/parse-launch.c: (expected_fail_pipe):
index e62036f..5a69402 100644 (file)
@@ -770,7 +770,8 @@ gst_base_transform_setcaps (GstPad * pad, GstCaps * caps)
   if (!peer_checked && otherpeer && !gst_pad_accept_caps (otherpeer, othercaps))
     goto peer_no_accept;
 
-  GST_DEBUG_OBJECT (trans, "got final caps %" GST_PTR_FORMAT, othercaps);
+  GST_DEBUG_OBJECT (trans, "Input caps were %" GST_PTR_FORMAT
+      ", and got final caps %" GST_PTR_FORMAT, caps, othercaps);
 
   trans->have_same_caps = gst_caps_is_equal (caps, othercaps);
   GST_DEBUG_OBJECT (trans, "have_same_caps: %d", trans->have_same_caps);
index 9bb22b6..1f11a03 100644 (file)
@@ -286,7 +286,7 @@ gst_dp_suite (void)
 
   suite_add_tcase (s, tc_chain);
   tcase_add_test (tc_chain, test_conversion);
-#ifndef __PPC64__
+#if !defined (__ppc64)
   tcase_add_test (tc_chain, test_buffer);
 #endif
   tcase_add_test (tc_chain, test_caps);
index 06c930a..d6cbea4 100644 (file)
@@ -324,9 +324,11 @@ GST_START_TEST (leaking_fail_pipes)
   const gchar **s;
 
   for (s = leaking_failures; *s != NULL; s++) {
-    g_print ("Trying pipe: %s\n", *s);
     /* Uncomment if you want to try fixing the leaks */
-    /* expected_fail_pipe (*s); */
+#if 0
+    g_print ("Trying pipe: %s\n", *s);
+    expected_fail_pipe (*s);
+#endif
     VALGRIND_DO_LEAK_CHECK;
   }
 }