summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/check/elements/id3v2mux.c1
-rw-r--r--tests/check/elements/rglimiter.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/check/elements/id3v2mux.c b/tests/check/elements/id3v2mux.c
index a55e4090..d824361c 100644
--- a/tests/check/elements/id3v2mux.c
+++ b/tests/check/elements/id3v2mux.c
@@ -367,6 +367,7 @@ test_taglib_id3mux_with_tags (GstTagList * tags, guint32 mask)
/* set up identity to catch tag buffer */
g_signal_connect (identity, "handoff", G_CALLBACK (identity_cb), &tagbuf);
+ GST_LOG ("setting and getting state ...");
gst_element_set_state (pipeline, GST_STATE_PLAYING);
fail_unless (gst_element_get_state (pipeline, NULL, NULL,
-1) == GST_STATE_CHANGE_SUCCESS);
diff --git a/tests/check/elements/rglimiter.c b/tests/check/elements/rglimiter.c
index 9d838785..ea0bd75c 100644
--- a/tests/check/elements/rglimiter.c
+++ b/tests/check/elements/rglimiter.c
@@ -176,6 +176,7 @@ GST_START_TEST (test_limiting)
/* Mutable variant. */
buf = create_test_buffer ();
+ GST_DEBUG ("push mutable buffer");
fail_unless (gst_pad_push (mysrcpad, buf) == GST_FLOW_OK);
fail_unless (g_list_length (buffers) == 1);
out_buf = buffers->data;
@@ -188,6 +189,7 @@ GST_START_TEST (test_limiting)
/* Extra ref: */
gst_buffer_ref (buf);
ASSERT_BUFFER_REFCOUNT (buf, "buf", 2);
+ GST_DEBUG ("push immutable buffer");
fail_unless (gst_pad_push (mysrcpad, buf) == GST_FLOW_OK);
ASSERT_BUFFER_REFCOUNT (buf, "buf", 1);
fail_unless (g_list_length (buffers) == 2);