mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
Require GIO >= 0.1.2 and adjust unit test for an API change.
Original commit message from CVS: * configure.ac: * tests/check/pipelines/gio.c: (GST_START_TEST): Require GIO >= 0.1.2 and adjust unit test for an API change.
This commit is contained in:
parent
675f5de659
commit
7236df5359
1 changed files with 2 additions and 6 deletions
|
@ -84,7 +84,7 @@ GST_START_TEST (test_memory_stream)
|
|||
|
||||
out_data = g_byte_array_new ();
|
||||
output = G_MEMORY_OUTPUT_STREAM (g_memory_output_stream_new (out_data));
|
||||
g_memory_output_stream_set_free_on_close (output, FALSE);
|
||||
g_memory_output_stream_set_free_data (output, TRUE);
|
||||
|
||||
loop = g_main_loop_new (NULL, FALSE);
|
||||
|
||||
|
@ -115,17 +115,13 @@ GST_START_TEST (test_memory_stream)
|
|||
|
||||
fail_unless (got_eos);
|
||||
|
||||
for (i = 0; i < 512; i++) {
|
||||
for (i = 0; i < 512; i++)
|
||||
fail_unless_equals_int (in_data[i], out_data->data[i]);
|
||||
}
|
||||
|
||||
g_byte_array_free (out_data, TRUE);
|
||||
|
||||
g_object_unref (input);
|
||||
g_object_unref (output);
|
||||
|
||||
g_main_loop_unref (loop);
|
||||
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
|
Loading…
Reference in a new issue