Improve test coverage of glib-unix.c

This commit is contained in:
Matthias Clasen
2011-06-06 00:31:06 -04:00
parent bb0cbc2ae1
commit 3e93fa7a25

View File

@@ -33,8 +33,10 @@ test_pipe (void)
int pipefd[2];
char buf[1024];
ssize_t bytes_read;
gboolean res;
g_unix_open_pipe (pipefd, FD_CLOEXEC, NULL);
res = g_unix_open_pipe (pipefd, FD_CLOEXEC, &error);
g_assert (res);
g_assert_no_error (error);
write (pipefd[1], "hello", sizeof ("hello"));
@@ -48,6 +50,18 @@ test_pipe (void)
g_assert (g_str_has_prefix (buf, "hello"));
}
static void
test_error (void)
{
GError *error = NULL;
gboolean res;
res = g_unix_set_fd_nonblocking (123456, TRUE, &error);
g_assert_cmpint (errno, ==, EBADF);
g_assert (!res);
g_assert_error (error, G_UNIX_ERROR, 0);
}
static gboolean sighup_received = FALSE;
static gboolean
@@ -133,6 +147,7 @@ main (int argc,
#endif
g_test_add_func ("/glib-unix/pipe", test_pipe);
g_test_add_func ("/glib-unix/error", test_error);
g_test_add_func ("/glib-unix/sighup", test_sighup);
g_test_add_func ("/glib-unix/sighup_again", test_sighup);
g_test_add_func ("/glib-unix/sighup_add_remove", test_sighup_add_remove);