Use libsupport for tst-spawn.c

No function changes is done.  Checked on x86_64-linux-gnu.

	* posix/tst-spawn.c (do_prepare, handle_restart, do_test):
	Use libsupport.
This commit is contained in:
Adhemerval Zanella 2018-09-19 11:12:05 -07:00
parent 335a3b0a0d
commit c70271662a
2 changed files with 89 additions and 114 deletions

View File

@ -1,3 +1,8 @@
2018-09-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
* posix/tst-spawn.c (do_prepare, handle_restart, do_test):
Use libsupport.
2018-09-25 Arjun Shankar <arjun@redhat.com> 2018-09-25 Arjun Shankar <arjun@redhat.com>
* iconv/gconv_int.h (__gconv_path_elem): Remove. * iconv/gconv_int.h (__gconv_path_elem): Remove.

View File

@ -17,16 +17,20 @@
License along with the GNU C Library; if not, see License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */ <http://www.gnu.org/licenses/>. */
#include <stdio.h>
#include <getopt.h>
#include <errno.h> #include <errno.h>
#include <error.h> #include <error.h>
#include <fcntl.h> #include <fcntl.h>
#include <spawn.h> #include <spawn.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <wait.h>
#include <sys/param.h> #include <sys/param.h>
#include <support/check.h> #include <support/check.h>
#include <support/xunistd.h> #include <support/xunistd.h>
#include <support/temp_file.h>
#include <support/support.h>
/* Nonzero if the program gets called via `exec'. */ /* Nonzero if the program gets called via `exec'. */
@ -36,16 +40,6 @@ static int restart;
#define CMDLINE_OPTIONS \ #define CMDLINE_OPTIONS \
{ "restart", no_argument, &restart, 1 }, { "restart", no_argument, &restart, 1 },
/* Prototype for our test function. */
extern void do_prepare (int argc, char *argv[]);
extern int do_test (int argc, char *argv[]);
/* We have a preparation function. */
#define PREPARE do_prepare
#include "../test-skeleton.c"
/* Name of the temporary files. */ /* Name of the temporary files. */
static char *name1; static char *name1;
static char *name2; static char *name2;
@ -63,19 +57,18 @@ static const char fd3string[] = "This file will be opened";
/* We have a preparation function. */ /* We have a preparation function. */
void static void
do_prepare (int argc, char *argv[]) do_prepare (int argc, char *argv[])
{ {
/* We must not open any files in the restart case. */ /* We must not open any files in the restart case. */
if (restart) if (restart)
return; return;
temp_fd1 = create_temp_file ("spawn", &name1); TEST_VERIFY_EXIT ((temp_fd1 = create_temp_file ("spawn", &name1)) != -1);
temp_fd2 = create_temp_file ("spawn", &name2); TEST_VERIFY_EXIT ((temp_fd2 = create_temp_file ("spawn", &name2)) != -1);
temp_fd3 = create_temp_file ("spawn", &name3); TEST_VERIFY_EXIT ((temp_fd3 = create_temp_file ("spawn", &name3)) != -1);
if (temp_fd1 < 0 || temp_fd2 < 0 || temp_fd3 < 0)
exit (1);
} }
#define PREPARE do_prepare
static int static int
@ -95,64 +88,45 @@ handle_restart (const char *fd1s, const char *fd2s, const char *fd3s,
fd4 = atol (fd4s); fd4 = atol (fd4s);
/* Sanity check. */ /* Sanity check. */
if (fd1 == fd2) TEST_VERIFY_EXIT (fd1 != fd2);
error (EXIT_FAILURE, 0, "value of fd1 and fd2 is the same"); TEST_VERIFY_EXIT (fd1 != fd3);
if (fd1 == fd3) TEST_VERIFY_EXIT (fd1 != fd4);
error (EXIT_FAILURE, 0, "value of fd1 and fd3 is the same"); TEST_VERIFY_EXIT (fd2 != fd3);
if (fd1 == fd4) TEST_VERIFY_EXIT (fd2 != fd4);
error (EXIT_FAILURE, 0, "value of fd1 and fd4 is the same"); TEST_VERIFY_EXIT (fd3 != fd4);
if (fd2 == fd3)
error (EXIT_FAILURE, 0, "value of fd2 and fd3 is the same");
if (fd2 == fd4)
error (EXIT_FAILURE, 0, "value of fd2 and fd4 is the same");
if (fd3 == fd4)
error (EXIT_FAILURE, 0, "value of fd3 and fd4 is the same");
/* First the easy part: read from the file descriptor which is /* First the easy part: read from the file descriptor which is
supposed to be open. */ supposed to be open. */
if (lseek (fd2, 0, SEEK_CUR) != strlen (fd2string)) TEST_COMPARE (xlseek (fd2, 0, SEEK_CUR), strlen (fd2string));
error (EXIT_FAILURE, errno, "file 2 not in right position");
/* The duped descriptor must have the same position. */ /* The duped descriptor must have the same position. */
if (lseek (fd4, 0, SEEK_CUR) != strlen (fd2string)) TEST_COMPARE (xlseek (fd4, 0, SEEK_CUR), strlen (fd2string));
error (EXIT_FAILURE, errno, "file 4 not in right position"); TEST_COMPARE (xlseek (fd2, 0, SEEK_SET), 0);
if (lseek (fd2, 0, SEEK_SET) != 0) TEST_COMPARE (xlseek (fd4, 0, SEEK_CUR), 0);
error (EXIT_FAILURE, 0, "cannot reset position in file 2"); TEST_COMPARE (read (fd2, buf, sizeof buf), strlen (fd2string));
if (lseek (fd4, 0, SEEK_CUR) != 0) TEST_COMPARE_BLOB (fd2string, strlen (fd2string), buf, strlen (fd2string));
error (EXIT_FAILURE, errno, "file 4 not set back, too");
if (read (fd2, buf, sizeof buf) != strlen (fd2string))
error (EXIT_FAILURE, 0, "cannot read file 2");
if (memcmp (fd2string, buf, strlen (fd2string)) != 0)
error (EXIT_FAILURE, 0, "file 2 does not match");
/* Now read from the third file. */ /* Now read from the third file. */
if (read (fd3, buf, sizeof buf) != strlen (fd3string)) TEST_COMPARE (read (fd3, buf, sizeof buf), strlen (fd3string));
error (EXIT_FAILURE, 0, "cannot read file 3"); TEST_COMPARE_BLOB (fd3string, strlen (fd3string), buf, strlen (fd3string));
if (memcmp (fd3string, buf, strlen (fd3string)) != 0)
error (EXIT_FAILURE, 0, "file 3 does not match");
/* Try to write to the file. This should not be allowed. */ /* Try to write to the file. This should not be allowed. */
if (write (fd3, "boo!", 4) != -1 || errno != EBADF) TEST_COMPARE (write (fd3, "boo!", 4), -1);
error (EXIT_FAILURE, 0, "file 3 is writable"); TEST_COMPARE (errno, EBADF);
/* Now try to read the first file. First make sure it is not opened. */ /* Now try to read the first file. First make sure it is not opened. */
if (lseek (fd1, 0, SEEK_CUR) != (off_t) -1 || errno != EBADF) TEST_COMPARE (lseek (fd1, 0, SEEK_CUR), (off_t) -1);
error (EXIT_FAILURE, 0, "file 1 (%d) is not closed", fd1); TEST_COMPARE (errno, EBADF);
/* Now open the file and read it. */ /* Now open the file and read it. */
fd1 = open (name, O_RDONLY); fd1 = xopen (name, O_RDONLY, 0600);
if (fd1 == -1)
error (EXIT_FAILURE, errno,
"cannot open first file \"%s\" for verification", name);
if (read (fd1, buf, sizeof buf) != strlen (fd1string)) TEST_COMPARE (read (fd1, buf, sizeof buf), strlen (fd1string));
error (EXIT_FAILURE, errno, "cannot read file 1"); TEST_COMPARE_BLOB (fd1string, strlen (fd1string), buf, strlen (fd1string));
if (memcmp (fd1string, buf, strlen (fd1string)) != 0)
error (EXIT_FAILURE, 0, "file 1 does not match");
return 0; return 0;
} }
int static int
do_test (int argc, char *argv[]) do_test (int argc, char *argv[])
{ {
pid_t pid; pid_t pid;
@ -181,7 +155,7 @@ do_test (int argc, char *argv[])
+ the name of the closed descriptor + the name of the closed descriptor
*/ */
if (argc != (restart ? 6 : 2) && argc != (restart ? 6 : 5)) if (argc != (restart ? 6 : 2) && argc != (restart ? 6 : 5))
error (EXIT_FAILURE, 0, "wrong number of arguments (%d)", argc); FAIL_EXIT1 ("wrong number of arguments (%d)", argc);
if (restart) if (restart)
return handle_restart (argv[1], argv[2], argv[3], argv[4], argv[5]); return handle_restart (argv[1], argv[2], argv[3], argv[4], argv[5]);
@ -189,77 +163,73 @@ do_test (int argc, char *argv[])
/* Prepare the test. We are creating two files: one which file descriptor /* Prepare the test. We are creating two files: one which file descriptor
will be marked with FD_CLOEXEC, another which is not. */ will be marked with FD_CLOEXEC, another which is not. */
/* Write something in the files. */ /* Write something in the files. */
if (write (temp_fd1, fd1string, strlen (fd1string)) != strlen (fd1string)) xwrite (temp_fd1, fd1string, strlen (fd1string));
error (EXIT_FAILURE, errno, "cannot write to first file"); xwrite (temp_fd2, fd2string, strlen (fd2string));
if (write (temp_fd2, fd2string, strlen (fd2string)) != strlen (fd2string)) xwrite (temp_fd3, fd3string, strlen (fd3string));
error (EXIT_FAILURE, errno, "cannot write to second file");
if (write (temp_fd3, fd3string, strlen (fd3string)) != strlen (fd3string))
error (EXIT_FAILURE, errno, "cannot write to third file");
/* Close the third file. It'll be opened by `spawn'. */ /* Close the third file. It'll be opened by `spawn'. */
close (temp_fd3); xclose (temp_fd3);
/* Tell `spawn' what to do. */ /* Tell `spawn' what to do. */
if (posix_spawn_file_actions_init (&actions) != 0) TEST_COMPARE (posix_spawn_file_actions_init (&actions), 0);
error (EXIT_FAILURE, errno, "posix_spawn_file_actions_init"); /* Close `temp_fd1'. */
/* Close `temp_fd1'. */ TEST_COMPARE (posix_spawn_file_actions_addclose (&actions, temp_fd1), 0);
if (posix_spawn_file_actions_addclose (&actions, temp_fd1) != 0) /* We want to open the third file. */
error (EXIT_FAILURE, errno, "posix_spawn_file_actions_addclose"); name3_copy = xstrdup (name3);
/* We want to open the third file. */ TEST_COMPARE (posix_spawn_file_actions_addopen (&actions, temp_fd3,
name3_copy = strdup (name3); name3_copy,
if (name3_copy == NULL) O_RDONLY, 0666),
error (EXIT_FAILURE, errno, "strdup"); 0);
if (posix_spawn_file_actions_addopen (&actions, temp_fd3, name3_copy, /* Overwrite the name to check that a copy has been made. */
O_RDONLY, 0666) != 0) memset (name3_copy, 'X', strlen (name3_copy));
error (EXIT_FAILURE, errno, "posix_spawn_file_actions_addopen");
/* Overwrite the name to check that a copy has been made. */
memset (name3_copy, 'X', strlen (name3_copy));
/* We dup the second descriptor. */ /* We dup the second descriptor. */
fd4 = MAX (2, MAX (temp_fd1, MAX (temp_fd2, temp_fd3))) + 1; fd4 = MAX (2, MAX (temp_fd1, MAX (temp_fd2, temp_fd3))) + 1;
if (posix_spawn_file_actions_adddup2 (&actions, temp_fd2, fd4) != 0) TEST_COMPARE (posix_spawn_file_actions_adddup2 (&actions, temp_fd2, fd4),
error (EXIT_FAILURE, errno, "posix_spawn_file_actions_adddup2"); 0);
/* Now spawn the process. */ /* Now spawn the process. */
snprintf (fd1name, sizeof fd1name, "%d", temp_fd1); snprintf (fd1name, sizeof fd1name, "%d", temp_fd1);
snprintf (fd2name, sizeof fd2name, "%d", temp_fd2); snprintf (fd2name, sizeof fd2name, "%d", temp_fd2);
snprintf (fd3name, sizeof fd3name, "%d", temp_fd3); snprintf (fd3name, sizeof fd3name, "%d", temp_fd3);
snprintf (fd4name, sizeof fd4name, "%d", fd4); snprintf (fd4name, sizeof fd4name, "%d", fd4);
for (i = 0; i < (argc == (restart ? 6 : 5) ? 4 : 1); i++) for (i = 0; i < (argc == (restart ? 6 : 5) ? 4 : 1); i++)
spargv[i] = argv[i + 1]; spargv[i] = argv[i + 1];
spargv[i++] = (char *) "--direct"; spargv[i++] = (char *) "--direct";
spargv[i++] = (char *) "--restart"; spargv[i++] = (char *) "--restart";
spargv[i++] = fd1name; spargv[i++] = fd1name;
spargv[i++] = fd2name; spargv[i++] = fd2name;
spargv[i++] = fd3name; spargv[i++] = fd3name;
spargv[i++] = fd4name; spargv[i++] = fd4name;
spargv[i++] = name1; spargv[i++] = name1;
spargv[i] = NULL; spargv[i] = NULL;
if (posix_spawn (&pid, argv[1], &actions, NULL, spargv, environ) != 0) TEST_COMPARE (posix_spawn (&pid, argv[1], &actions, NULL, spargv, environ),
error (EXIT_FAILURE, errno, "posix_spawn"); 0);
/* Same test but with a NULL pid argument. */ /* Same test but with a NULL pid argument. */
if (posix_spawn (NULL, argv[1], &actions, NULL, spargv, environ) != 0) TEST_COMPARE (posix_spawn (NULL, argv[1], &actions, NULL, spargv, environ),
error (EXIT_FAILURE, errno, "posix_spawn"); 0);
/* Cleanup. */ /* Cleanup. */
if (posix_spawn_file_actions_destroy (&actions) != 0) TEST_COMPARE (posix_spawn_file_actions_destroy (&actions), 0);
error (EXIT_FAILURE, errno, "posix_spawn_file_actions_destroy"); free (name3_copy);
free (name3_copy);
/* Wait for the children. */ /* Wait for the children. */
TEST_VERIFY (xwaitpid (pid, &status, 0) == pid); TEST_COMPARE (xwaitpid (pid, &status, 0), pid);
TEST_VERIFY (WIFEXITED (status)); TEST_VERIFY (WIFEXITED (status));
TEST_VERIFY (!WIFSIGNALED (status)); TEST_VERIFY (!WIFSIGNALED (status));
TEST_VERIFY (WEXITSTATUS (status) == 0); TEST_COMPARE (WEXITSTATUS (status), 0);
xwaitpid (-1, &status, 0); xwaitpid (-1, &status, 0);
TEST_VERIFY (WIFEXITED (status)); TEST_VERIFY (WIFEXITED (status));
TEST_VERIFY (!WIFSIGNALED (status)); TEST_VERIFY (!WIFSIGNALED (status));
TEST_VERIFY (WEXITSTATUS (status) == 0); TEST_COMPARE (WEXITSTATUS (status), 0);
return 0; return 0;
} }
#define TEST_FUNCTION_ARGV do_test
#include <support/test-driver.c>