tests: add unit test for queuearray expansion from 1
authorTim-Philipp Müller <tim@centricular.com>
Sat, 7 Jun 2014 08:46:42 +0000 (09:46 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 7 Jun 2014 08:46:42 +0000 (09:46 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=731349

tests/check/libs/queuearray.c

index 0141a11..4100178 100644 (file)
@@ -250,6 +250,18 @@ GST_START_TEST (test_array_drop2)
 
 GST_END_TEST;
 
+GST_START_TEST (test_array_grow_from_prealloc1)
+{
+  GstQueueArray *array;
+
+  array = gst_queue_array_new (1);
+  gst_queue_array_push_tail (array, NULL);
+  gst_queue_array_push_tail (array, NULL);
+  gst_queue_array_free (array);
+}
+
+GST_END_TEST;
+
 static Suite *
 gst_queue_array_suite (void)
 {
@@ -264,6 +276,7 @@ gst_queue_array_suite (void)
   tcase_add_test (tc_chain, test_array_grow_middle);
   tcase_add_test (tc_chain, test_array_grow_end);
   tcase_add_test (tc_chain, test_array_drop2);
+  tcase_add_test (tc_chain, test_array_grow_from_prealloc1);
 
   return s;
 }