2 Copyright (C) 2002-2020 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <https://www.gnu.org/licenses/>. */
30 #include <support/xsignal.h>
36 execl (_PATH_BSHELL
, _PATH_BSHELL
, "-c", "echo $$", NULL
);
38 puts ("execl failed");
53 /* Not interested in knowing when the pipe is closed. */
54 xsignal (SIGPIPE
, SIG_IGN
);
65 /* Use the fd for stdout. This is kind of ugly because it
66 substitutes the fd of stdout but we know what we are doing
68 if (dup2 (fd
[1], STDOUT_FILENO
) != STDOUT_FILENO
)
77 if (pthread_create (&th
, NULL
, tf
, NULL
) != 0)
79 puts ("create failed");
83 if (pthread_join (th
, NULL
) == 0)
85 puts ("join succeeded!?");
89 puts ("join returned!?");
97 bool seen_pid
= false;
98 while (TEMP_FAILURE_RETRY ((n
= read (fd
[0], buf
, sizeof (buf
)))) > 0)
100 /* We only expect to read the PID. */
102 long int rpid
= strtol (buf
, &endp
, 10);
106 printf ("didn't parse whole line: \"%s\"\n", buf
);
111 puts ("read empty line");
117 printf ("found \"%s\", expected PID %ld\n", buf
, (long int) pid
);
123 puts ("found more than one PID line");
132 int err
= waitpid (pid
, &status
, 0);
135 puts ("waitpid failed");
141 puts ("didn't get PID");
148 #define TEST_FUNCTION do_test ()
149 #include "../test-skeleton.c"