1 /* Check if posix_spawn does handle correctly ENOEXEC files.
2 Copyright (C) 2018-2019 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 <https://www.gnu.org/licenses/>. */
25 #include <support/xunistd.h>
26 #include <support/check.h>
27 #include <support/temp_file.h>
29 #include <shlib-compat.h>
30 #if TEST_COMPAT (libc, GLIBC_2_0, GLIBC_2_15)
32 compat_symbol_reference (libc
, posix_spawn
, posix_spawn
, GLIBC_2_2
);
33 compat_symbol_reference (libc
, posix_spawnp
, posix_spawnp
, GLIBC_2_2
);
39 int fd
= create_temp_file ("tst-spawn4.", &scriptname
);
40 TEST_VERIFY_EXIT (fd
>= 0);
42 const char script
[] = "exit 65";
43 xwrite (fd
, script
, sizeof (script
) - 1);
46 TEST_VERIFY_EXIT (chmod (scriptname
, 0x775) == 0);
51 /* For compat symbol it verifies that trying to issued a shell script
52 without a shebang is correctly executed. */
53 status
= posix_spawn (&pid
, scriptname
, NULL
, NULL
, (char *[]) { 0 },
55 TEST_VERIFY_EXIT (status
== 0);
57 TEST_VERIFY_EXIT (waitpid (pid
, &status
, 0) == pid
);
58 TEST_VERIFY_EXIT (WIFEXITED (status
) == 1 && WEXITSTATUS (status
) == 65);
60 status
= posix_spawnp (&pid
, scriptname
, NULL
, NULL
, (char *[]) { 0 },
62 TEST_VERIFY_EXIT (status
== 0);
64 TEST_VERIFY_EXIT (waitpid (pid
, &status
, 0) == pid
);
65 TEST_VERIFY_EXIT (WIFEXITED (status
) == 1 && WEXITSTATUS (status
) == 65);
77 #include <support/test-driver.c>