# HG changeset patch # User Bruno Haible # Date 1300044319 -3600 # Node ID 7be307034349238f5e0d8e204d509a91a6007b3b # Parent 1d050d935509d91920c5464a9e4b739b5bc2fbac passfd module, part 4, tweaks. * tests/test-passfd.c: Reorder includes. (main): Fix perror and printf calls. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-03-13 Bruno Haible + + passfd module, part 4, tweaks. + * tests/test-passfd.c: Reorder includes. + (main): Fix perror and printf calls. + 2011-03-07 Bastien Roucariès passfd module, part 4. diff --git a/tests/test-passfd.c b/tests/test-passfd.c --- a/tests/test-passfd.c +++ b/tests/test-passfd.c @@ -1,5 +1,5 @@ -/* 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 @@ -14,18 +14,17 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -/* Written by Bruno Haible , 2010. */ +#include -#include +#include "passfd.h" + +#include #include #include #include -#include "passfd.h" #include #include #include -#include - #include "macros.h" @@ -57,7 +56,7 @@ pid = fork (); if (pid == -1) { - perror ("fork:"); + perror ("fork"); return 3; } if (pid == 0) @@ -65,7 +64,7 @@ ret = sendfd (pair[1], fdnull); if (ret == -1) { - perror ("sendfd:"); + perror ("sendfd"); return 64; } return 0; @@ -82,7 +81,7 @@ ret = waitpid (pid, &status, 0); if (ret == -1) { - perror ("waitpid:"); + perror ("waitpid"); return 17; } ASSERT (ret == pid); @@ -96,7 +95,7 @@ ret = WEXITSTATUS (status); if (ret != 0) { - fprintf (stderr, "Send fd fail"); + fprintf (stderr, "Send fd fail\n"); return ret; } @@ -104,7 +103,7 @@ ret == fstat (fd, &st); if (0 != ret) { - perror("fstat:"); + perror ("fstat"); return 80; } return 0;