1 /* Further tests for spawn in case of invalid binary paths.
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/>. */
28 #include <support/check.h>
33 /* Check if posix_spawn correctly returns an error and an invalid pid
34 by trying to spawn an invalid binary. */
36 const char *program
= "/path/to/invalid/binary";
37 char * const args
[] = { 0 };
40 int ret
= posix_spawn (&pid
, program
, 0, 0, args
, environ
);
44 FAIL_EXIT1 ("posix_spawn: %m");
47 /* POSIX states the value returned on pid variable in case of an error
48 is not specified. GLIBC will update the value iff the child
49 execution is successful. */
51 FAIL_EXIT1 ("posix_spawn returned pid != -1 (%i)", (int) pid
);
53 /* Check if no child is actually created. */
54 ret
= waitpid (-1, NULL
, 0);
55 if (ret
!= -1 || errno
!= ECHILD
)
56 FAIL_EXIT1 ("waitpid: %m)");
58 /* Same as before, but with posix_spawnp. */
59 char *args2
[] = { (char*) program
, 0 };
61 ret
= posix_spawnp (&pid
, args2
[0], 0, 0, args2
, environ
);
65 FAIL_EXIT1 ("posix_spawnp: %m");
69 FAIL_EXIT1 ("posix_spawnp returned pid != -1 (%i)", (int) pid
);
71 ret
= waitpid (-1, NULL
, 0);
72 if (ret
!= -1 || errno
!= ECHILD
)
73 FAIL_EXIT1 ("waitpid: %m)");
78 #include <support/test-driver.c>