GMappedFile: improve test coverage

This commit is contained in:
Matthias Clasen 2011-06-06 01:14:23 -04:00
parent 698bb5d962
commit 782cf86f12

View File

@ -5,6 +5,22 @@
#include <unistd.h>
#endif
static void
test_basic (void)
{
GMappedFile *file;
GError *error;
error = NULL;
file = g_mapped_file_new (SRCDIR "/empty", FALSE, &error);
g_assert_no_error (error);
g_mapped_file_ref (file);
g_mapped_file_unref (file);
g_mapped_file_unref (file);
}
static void
test_empty (void)
{
@ -75,6 +91,7 @@ main (int argc, char *argv[])
{
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/mappedfile/basic", test_basic);
g_test_add_func ("/mappedfile/empty", test_empty);
g_test_add_func ("/mappedfile/nonexisting", test_nonexisting);
g_test_add_func ("/mappedfile/writable", test_writable);