powerpc64le: use common fmaf128 implementation
[glibc.git] / nptl / tst-exec1.c
blob892107d4c79d1a63cd394ee7f27a8917d115e273
1 /* Simple exec test, only a thread in the parent.
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/>. */
20 #include <errno.h>
21 #include <paths.h>
22 #include <pthread.h>
23 #include <signal.h>
24 #include <spawn.h>
25 #include <stdbool.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29 #include <sys/wait.h>
30 #include <support/xsignal.h>
33 static void *
34 tf (void *arg)
36 pthread_t th = (pthread_t) arg;
38 if (pthread_join (th, NULL) == 0)
40 puts ("thread in parent joined!?");
41 exit (1);
44 puts ("join in thread in parent returned!?");
45 exit (1);
49 static int
50 do_test (void)
52 int fd[2];
53 if (pipe (fd) != 0)
55 puts ("pipe failed");
56 exit (1);
59 /* Not interested in knowing when the pipe is closed. */
60 xsignal (SIGPIPE, SIG_IGN);
62 posix_spawn_file_actions_t a;
63 if (posix_spawn_file_actions_init (&a) != 0)
65 puts ("spawn_file_actions_init failed");
66 exit (1);
69 if (posix_spawn_file_actions_adddup2 (&a, fd[1], STDOUT_FILENO) != 0)
71 puts ("spawn_file_actions_adddup2 failed");
72 exit (1);
75 if (posix_spawn_file_actions_addclose (&a, fd[0]) != 0)
77 puts ("spawn_file_actions_addclose");
78 exit (1);
81 pthread_t th;
82 if (pthread_create (&th, NULL, tf, (void *) pthread_self ()) != 0)
84 puts ("create failed");
85 exit (1);
88 pid_t pid;
89 char *argv[] = { (char *) _PATH_BSHELL, (char *) "-c", (char *) "echo $$",
90 NULL };
91 if (posix_spawn (&pid, _PATH_BSHELL, &a, NULL, argv, NULL) != 0)
93 puts ("spawn failed");
94 exit (1);
97 close (fd[1]);
99 char buf[200];
100 ssize_t n;
101 bool seen_pid = false;
102 while (TEMP_FAILURE_RETRY ((n = read (fd[0], buf, sizeof (buf)))) > 0)
104 /* We only expect to read the PID. */
105 char *endp;
106 long int rpid = strtol (buf, &endp, 10);
108 if (*endp != '\n')
110 printf ("didn't parse whole line: \"%s\"\n", buf);
111 exit (1);
113 if (endp == buf)
115 puts ("read empty line");
116 exit (1);
119 if (rpid != pid)
121 printf ("found \"%s\", expected PID %ld\n", buf, (long int) pid);
122 exit (1);
125 if (seen_pid)
127 puts ("found more than one PID line");
128 exit (1);
131 seen_pid = true;
134 close (fd[0]);
136 int status;
137 int err = waitpid (pid, &status, 0);
138 if (err != pid)
140 puts ("waitpid failed");
141 exit (1);
144 if (!seen_pid)
146 puts ("didn't get PID");
147 exit (1);
150 puts ("read correct PID");
152 return 0;
155 #define TEST_FUNCTION do_test ()
156 #include "../test-skeleton.c"