Add sysdeps/ieee754/soft-fp.
[glibc.git] / posix / tst-fexecve.c
blob2409102e2185c6d87c3e322df78d526aa09b143c
1 /* Copyright (C) 2017 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library 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 GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #include <unistd.h>
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <sys/wait.h>
23 #include <support/check.h>
25 /* Try executing "/bin/sh -c true", using FD opened on /bin/sh. */
26 static int
27 try_fexecve (int fd)
29 pid_t pid = fork ();
31 if (pid == 0)
33 static const char *const argv[] = {
34 "/bin/sh", "-c", "true", NULL
36 fexecve (fd, (char *const *) argv, environ);
37 _exit (errno);
39 if (pid < 0)
40 FAIL_RET ("fork failed: %m");
42 pid_t termpid;
43 int status;
44 termpid = TEMP_FAILURE_RETRY (waitpid (pid, &status, 0));
45 if (termpid == -1)
46 FAIL_RET ("waitpid failed: %m");
47 if (termpid != pid)
48 FAIL_RET ("waitpid returned %ld != %ld",
49 (long int) termpid, (long int) pid);
50 if (!WIFEXITED (status))
51 FAIL_RET ("child hasn't exited normally");
53 /* If fexecve is unimplemented mark this test as UNSUPPORTED. */
54 if (WEXITSTATUS (status) == ENOSYS)
55 FAIL_UNSUPPORTED ("fexecve is unimplemented");
57 if (WEXITSTATUS (status) != 0)
59 errno = WEXITSTATUS (status);
60 FAIL_RET ("fexecve failed: %m");
62 return 0;
65 static int
66 do_test (void)
68 int fd;
69 int ret;
71 fd = open ("/bin/sh", O_RDONLY);
72 if (fd < 0)
73 FAIL_UNSUPPORTED ("/bin/sh cannot be opened: %m");
74 ret = try_fexecve (fd);
75 close (fd);
77 #ifdef O_PATH
78 fd = open ("/bin/sh", O_RDONLY | O_PATH);
79 if (fd < 0)
80 FAIL_UNSUPPORTED ("/bin/sh cannot be opened (O_PATH): %m");
81 ret |= try_fexecve (fd);
82 close (fd);
83 #endif
85 return ret;
88 #include <support/test-driver.c>