Index: gst-plugins-base-1.22.1/tests/check/libs/allocators.c =================================================================== --- gst-plugins-base-1.22.1.orig/tests/check/libs/allocators.c +++ gst-plugins-base-1.22.1/tests/check/libs/allocators.c @@ -80,7 +80,7 @@ GST_START_TEST (test_fdmem) alloc = gst_fd_allocator_new (); fail_unless (alloc); - mem = gst_fd_allocator_alloc (alloc, fd, 10, GST_FD_MEMORY_FLAG_KEEP_MAPPED); + mem = gst_fd_allocator_alloc (alloc, fd, 10, GST_FD_MEMORY_FLAG_KEEP_MAPPED | GST_FD_MEMORY_FLAG_DONT_CLOSE); fail_unless (gst_memory_map (mem, &info, GST_MAP_READ)); fail_unless (info.data[5] == '5'); @@ -95,7 +95,7 @@ GST_START_TEST (test_fdmem) gst_memory_unmap (mem, &info); gst_memory_unref (mem); - fail_unless (g_close (fd, NULL) == 0); + fail_unless (g_close (fd, NULL)); gst_object_unref (alloc); }