+2011-03-13 Bruno Haible <bruno@clisp.org>
+
+ passfd module, part 4, tweaks.
+ * tests/test-passfd.c: Reorder includes.
+ (main): Fix perror and printf calls.
+
2011-03-07 Bastien Roucariès <roucaries.bastien@gmail.com>
passfd module, part 4.
-/* Test of terminating the current process.
- Copyright (C) 2010-2011 Free Software Foundation, Inc.
+/* Test of passing file descriptors.
+ Copyright (C) 2011 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
-/* Written by Bruno Haible <bruno@clisp.org>, 2010. */
-
#include <config.h>
+
+#include "passfd.h"
+
+#include <fcntl.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
-#include "passfd.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
-#include <fcntl.h>
-
#include "macros.h"
pid = fork ();
if (pid == -1)
{
- perror ("fork:");
+ perror ("fork");
return 3;
}
if (pid == 0)
ret = sendfd (pair[1], fdnull);
if (ret == -1)
{
- perror ("sendfd:");
+ perror ("sendfd");
return 64;
}
return 0;
ret = waitpid (pid, &status, 0);
if (ret == -1)
{
- perror ("waitpid:");
+ perror ("waitpid");
return 17;
}
ASSERT (ret == pid);
ret = WEXITSTATUS (status);
if (ret != 0)
{
- fprintf (stderr, "Send fd fail");
+ fprintf (stderr, "Send fd fail\n");
return ret;
}
ret == fstat (fd, &st);
if (0 != ret)
{
- perror("fstat:");
+ perror ("fstat");
return 80;
}
return 0;