1 /* Test of create_pipe_bidi/wait_subprocess.
2 Copyright (C) 2009-2017 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <http://www.gnu.org/licenses/>. */
19 #include "spawn-pipe.h"
20 #include "wait-process.h"
28 /* Depending on arguments, this test intentionally closes stderr or
29 starts life with stderr closed. So, we arrange to have fd 10
30 (outside the range of interesting fd's during the test) set up to
31 duplicate the original stderr. */
33 #define BACKUP_STDERR_FILENO 10
34 #define ASSERT_STREAM myerr
39 /* Create a bi-directional pipe to a test child, and validate that the
40 child program returns the expected output.
41 PROG is the program to run in the child process.
42 STDERR_CLOSED is true if we have already closed fd 2. */
44 test_pipe (const char *prog
, bool stderr_closed
)
49 char buffer
[2] = { 'a', 't' };
52 argv
[0] = (char *) prog
;
53 argv
[1] = (char *) (stderr_closed
? "1" : "0");
55 pid
= create_pipe_bidi (prog
, prog
, argv
, false, true, true, fd
);
57 ASSERT (STDERR_FILENO
< fd
[0]);
58 ASSERT (STDERR_FILENO
< fd
[1]);
60 /* Push child's input. */
61 ASSERT (write (fd
[1], buffer
, 1) == 1);
62 ASSERT (close (fd
[1]) == 0);
64 /* Get child's output. */
65 ASSERT (read (fd
[0], buffer
, 2) == 1);
68 ASSERT (wait_subprocess (pid
, prog
, true, false, true, true, NULL
) == 0);
69 ASSERT (close (fd
[0]) == 0);
71 /* Check the result. */
72 ASSERT (buffer
[0] == 'b');
73 ASSERT (buffer
[1] == 't');
77 main (int argc
, char *argv
[])
84 fprintf (stderr
, "%s: need 2 arguments\n", argv
[0]);
87 /* We might close fd 2 later, so save it in fd 10. */
88 if (dup2 (STDERR_FILENO
, BACKUP_STDERR_FILENO
) != BACKUP_STDERR_FILENO
89 || (myerr
= fdopen (BACKUP_STDERR_FILENO
, "w")) == NULL
)
92 /* Selectively close various standard fds, to verify the child process is
93 not impacted by this. */
94 test
= atoi (argv
[2]);
129 /* Plug any file descriptor leaks inherited from outside world before
130 starting, so that child has a clean slate (at least for the fds that we
131 might be manipulating). */
132 for (fd
= 3; fd
< 7; fd
++)
135 test_pipe (argv
[1], test
>= 4);