summaryrefslogtreecommitdiffstats
path: root/tests/check/elements
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@mad.scientist.com>2008-02-09 00:15:25 +0000
committerJan Schmidt <thaytan@mad.scientist.com>2008-02-09 00:15:25 +0000
commit6afa17d8f0d32f621ed9c908a694620d00129012 (patch)
tree4488a88ffc3971f488eb203ca8f6e1c35072aa6c /tests/check/elements
parentd90422ec8a8e6e061621630646e6f86877dadbf9 (diff)
gst/: Fix includes order
Original commit message from CVS: * gst/equalizer/Makefile.am: * gst/spectrum/Makefile.am: Fix includes order * tests/check/Makefile.am: Exclude v4l2src from the states test - it takes too long to start. * tests/check/elements/spectrum.c: Make the test run properly with CK_FORK=no
Diffstat (limited to 'tests/check/elements')
-rw-r--r--tests/check/elements/spectrum.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/check/elements/spectrum.c b/tests/check/elements/spectrum.c
index 245b37bc..98e0074d 100644
--- a/tests/check/elements/spectrum.c
+++ b/tests/check/elements/spectrum.c
@@ -124,6 +124,10 @@ cleanup_spectrum (GstElement * spectrum)
gst_check_teardown_src_pad (spectrum);
gst_check_teardown_sink_pad (spectrum);
gst_check_teardown_element (spectrum);
+
+ g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
+ g_list_free (buffers);
+ buffers = NULL;
}
@@ -222,7 +226,6 @@ GST_START_TEST (test_int16)
gst_element_set_bus (spectrum, NULL);
ASSERT_OBJECT_REFCOUNT (bus, "bus", 1);
gst_object_unref (bus);
- gst_buffer_unref (outbuffer);
fail_unless (gst_element_set_state (spectrum,
GST_STATE_NULL) == GST_STATE_CHANGE_SUCCESS, "could not set to null");
ASSERT_OBJECT_REFCOUNT (spectrum, "spectrum", 1);
@@ -324,7 +327,6 @@ GST_START_TEST (test_int32)
gst_element_set_bus (spectrum, NULL);
ASSERT_OBJECT_REFCOUNT (bus, "bus", 1);
gst_object_unref (bus);
- gst_buffer_unref (outbuffer);
fail_unless (gst_element_set_state (spectrum,
GST_STATE_NULL) == GST_STATE_CHANGE_SUCCESS, "could not set to null");
ASSERT_OBJECT_REFCOUNT (spectrum, "spectrum", 1);
@@ -426,7 +428,6 @@ GST_START_TEST (test_float32)
gst_element_set_bus (spectrum, NULL);
ASSERT_OBJECT_REFCOUNT (bus, "bus", 1);
gst_object_unref (bus);
- gst_buffer_unref (outbuffer);
fail_unless (gst_element_set_state (spectrum,
GST_STATE_NULL) == GST_STATE_CHANGE_SUCCESS, "could not set to null");
ASSERT_OBJECT_REFCOUNT (spectrum, "spectrum", 1);
@@ -528,7 +529,6 @@ GST_START_TEST (test_float64)
gst_element_set_bus (spectrum, NULL);
ASSERT_OBJECT_REFCOUNT (bus, "bus", 1);
gst_object_unref (bus);
- gst_buffer_unref (outbuffer);
fail_unless (gst_element_set_state (spectrum,
GST_STATE_NULL) == GST_STATE_CHANGE_SUCCESS, "could not set to null");
ASSERT_OBJECT_REFCOUNT (spectrum, "spectrum", 1);