Remove powerpc, sparc fdim inlines (bug 22987).
[glibc.git] / posix / tst-execvpe5.c
blob044ceecacba4a44393886b938c9e15cf094f7c26
1 /* General tests for execpve.
2 Copyright (C) 2016-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library 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 GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <unistd.h>
24 #include <wait.h>
27 /* Nonzero if the program gets called via `exec'. */
28 static int restart;
31 #define CMDLINE_OPTIONS \
32 { "restart", no_argument, &restart, 1 },
34 /* Prototype for our test function. */
35 extern void do_prepare (int argc, char *argv[]);
36 extern int do_test (int argc, char *argv[]);
38 #include "../test-skeleton.c"
40 #define EXECVPE_KEY "EXECVPE_ENV"
41 #define EXECVPE_VALUE "execvpe_test"
44 static int
45 handle_restart (void)
47 /* First check if only one variable is passed on execvpe. */
48 int env_count = 0;
49 for (char **e = environ; *e != NULL; ++e)
50 if (++env_count == INT_MAX)
52 printf ("Environment variable number overflow");
53 exit (EXIT_FAILURE);
55 if (env_count != 1)
57 printf ("Wrong number of environment variables");
58 exit (EXIT_FAILURE);
61 /* Check if the combinarion os "EXECVPE_ENV=execvpe_test" */
62 const char *env = getenv (EXECVPE_KEY);
63 if (env == NULL)
65 printf ("Test environment variable not found");
66 exit (EXIT_FAILURE);
69 if (strncmp (env, EXECVPE_VALUE, sizeof (EXECVPE_VALUE)))
71 printf ("Test environment variable with wrong value");
72 exit (EXIT_FAILURE);
75 return 0;
79 int
80 do_test (int argc, char *argv[])
82 pid_t pid;
83 int status;
85 /* We must have
86 - one or four parameters left if called initially
87 + path for ld.so optional
88 + "--library-path" optional
89 + the library path optional
90 + the application name
92 if --enable-hardcoded-path-in-tests is used, just
93 + the application name
96 if (restart)
98 if (argc != 1)
100 printf ("Wrong number of arguments (%d) in restart\n", argc);
101 exit (EXIT_FAILURE);
104 return handle_restart ();
107 if (argc != 2 && argc != 5)
109 printf ("Wrong number of arguments (%d)\n", argc);
110 exit (EXIT_FAILURE);
113 /* We want to test the `execvpe' function. To do this we restart the
114 program with an additional parameter. */
115 pid = fork ();
116 if (pid == 0)
118 /* This is the child. Construct the command line. */
120 /* We cast here to char* because the test itself does not modify neither
121 the argument nor the environment list. */
122 char *envs[] = { (char*)(EXECVPE_KEY "=" EXECVPE_VALUE), NULL };
123 if (argc == 5)
125 char *args[] = { argv[1], argv[2], argv[3], argv[4],
126 (char *) "--direct", (char *) "--restart", NULL };
127 execvpe (args[0], args, envs);
129 else
131 char *args[] = { argv[0],
132 (char *) "--direct", (char *) "--restart", NULL };
133 execvpe (args[0], args, envs);
136 puts ("Cannot exec");
137 exit (EXIT_FAILURE);
139 else if (pid == (pid_t) -1)
141 puts ("Cannot fork");
142 return 1;
145 /* Wait for the child. */
146 if (waitpid (pid, &status, 0) != pid)
148 puts ("Wrong child");
149 return 1;
152 if (WTERMSIG (status) != 0)
154 puts ("Child terminated incorrectly");
155 return 1;
157 status = WEXITSTATUS (status);
159 return status;