1 /* Test for nonblocking read and write on pipes.
3 Copyright (C) 2011-2020 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
27 #if defined _WIN32 && ! defined __CYGWIN__
33 #include "nonblocking.h"
34 #include "wait-process.h"
37 #include "test-nonblocking-pipe.h"
38 #define PROG_ROLE "main"
39 #include "test-nonblocking-writer.h"
42 main (int argc
, char *argv
[])
44 const char *child_path
;
51 test
= atoi (argv
[2]);
54 ASSERT (pipe (fd
) >= 0);
56 /* Map fd[0] to STDIN_FILENO and fd[1] to STDOUT_FILENO, because on Windows,
57 the only three file descriptors that are inherited by child processes are
58 STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO. */
59 if (fd
[0] != STDIN_FILENO
)
61 ASSERT (dup2 (fd
[0], STDIN_FILENO
) >= 0);
64 if (fd
[1] != STDOUT_FILENO
)
66 ASSERT (dup2 (fd
[1], STDOUT_FILENO
) >= 0);
70 /* Prepare the file descriptors. */
72 ASSERT (set_nonblocking_flag (STDOUT_FILENO
, true) >= 0);
74 ASSERT (set_nonblocking_flag (STDIN_FILENO
, true) >= 0);
76 /* Spawn the child process. */
78 const char *child_argv
[3];
80 child_argv
[0] = child_path
;
81 child_argv
[1] = argv
[2];
84 #if defined _WIN32 && ! defined __CYGWIN__
85 child
= _spawnvpe (P_NOWAIT
, child_path
, child_argv
,
86 (const char **) environ
);
92 posix_spawnp (&child_pid
, child_path
, NULL
, NULL
, (char **) child_argv
,
100 /* Close unused file descriptors. */
101 close (STDIN_FILENO
);
104 main_writer_loop (test
, PIPE_DATA_BLOCK_SIZE
, STDOUT_FILENO
, false);
108 wait_subprocess (child
, child_path
, false, false, false, false, NULL
);