usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-execve-main.c
blob94e36428a47b713c8156e758e36317206d624113
1 /* Test of execve().
2 Copyright (C) 2020-2024 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3, or (at your option)
7 any later version.
9 This program 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
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2020. */
19 #include <config.h>
21 /* Specification. */
22 #include <unistd.h>
24 #include "signature.h"
25 SIGNATURE_CHECK (execve, int, (const char *, char * const *, char * const *));
27 #include <stdio.h>
28 #include <string.h>
30 /* Looks up the NAME=VALUE assignment among the environment variables.
31 Returns it, or NULL if not found. */
32 static const char *
33 get_environ_assignment (const char *name)
35 size_t name_len = strlen (name);
36 char **p;
37 for (p = environ; *p != NULL; p++)
39 const char *assignment = *p;
40 if (strncmp (assignment, name, name_len) == 0
41 && assignment[name_len] == '=')
42 return assignment;
44 return NULL;
47 /* Creates a minimal environment. */
48 static void
49 create_minimal_env (const char *env[5])
51 const char **p = env;
52 *p++ =
53 #ifdef __CYGWIN__
54 /* The Cygwin DLLs needed by the program are in /bin. */
55 "PATH=.:/bin";
56 #else
57 "PATH=.";
58 #endif
59 *p = get_environ_assignment ("QEMU_LD_PREFIX");
60 if (*p != NULL)
61 p++;
62 *p = get_environ_assignment ("QEMU_CPU");
63 if (*p != NULL)
64 p++;
65 *p++ = "Hommingberg=Gepardenforelle";
66 *p = NULL;
69 int
70 main ()
72 const char *progname = "./test-exec-child";
73 const char *argv[12] =
75 progname,
76 "abc def",
77 "abc\"def\"ghi",
78 "xyz\"",
79 "abc\\def\\ghi",
80 "xyz\\",
81 "???",
82 "***",
83 "",
84 "foo",
85 "",
86 NULL
88 const char *env[5];
89 create_minimal_env (env);
90 execve (progname, (char * const *) argv, (char * const *) env);
92 perror ("execve");
93 return 1;