Support run tst-exec and tst-spawn directly

This commit is contained in:
H.J. Lu 2013-01-10 14:14:55 -08:00
parent 828beb132d
commit 4cf8f2098f
6 changed files with 44 additions and 24 deletions

View File

@ -1,3 +1,14 @@
2013-01-10 H.J. Lu <hongjiu.lu@intel.com>
* posix/Makefile (tests-static): New variable.
(tests): Add $(tests-static).
(tst-exec-static-ARGS): New variable.
(tst-spawn-static-ARGS): Likewise.
* posix/tst-exec-static.c: New file.
* posix/tst-spawn-static.c: Likewise.
* posix/tst-exec.c: Support run directly.
* posix/tst-spawn.c: Likewise.
2013-01-10 Joseph Myers <joseph@codesourcery.com> 2013-01-10 Joseph Myers <joseph@codesourcery.com>
* elf/link.h (struct dl_phdr_info): Use __extension__ with long * elf/link.h (struct dl_phdr_info): Use __extension__ with long

View File

@ -92,6 +92,8 @@ ifeq (yes,$(build-shared))
test-srcs := globtest test-srcs := globtest
tests += wordexp-test tst-exec tst-spawn tests += wordexp-test tst-exec tst-spawn
endif endif
tests-static = tst-exec-static tst-spawn-static
tests += $(tests-static)
others := getconf others := getconf
install-bin := getconf install-bin := getconf
install-others-programs := $(inst_libexecdir)/getconf install-others-programs := $(inst_libexecdir)/getconf
@ -172,7 +174,9 @@ tstgetopt-ARGS = -a -b -cfoobar --required foobar --optional=bazbug \
--none random --col --color --colour --none random --col --color --colour
tst-exec-ARGS = -- $(host-built-program-cmd) tst-exec-ARGS = -- $(host-built-program-cmd)
tst-exec-static-ARGS = $(tst-exec-ARGS)
tst-spawn-ARGS = -- $(host-built-program-cmd) tst-spawn-ARGS = -- $(host-built-program-cmd)
tst-spawn-static-ARGS = $(tst-spawn-ARGS)
tst-dir-ARGS = `pwd` `cd $(common-objdir)/$(subdir); pwd` `cd $(common-objdir); pwd` $(objpfx)tst-dir tst-dir-ARGS = `pwd` `cd $(common-objdir)/$(subdir); pwd` `cd $(common-objdir); pwd` $(objpfx)tst-dir
tst-chmod-ARGS = $(objdir) tst-chmod-ARGS = $(objdir)
tst-vfork3-ARGS = --test-dir=$(objpfx) tst-vfork3-ARGS = --test-dir=$(objpfx)

1
posix/tst-exec-static.c Normal file
View File

@ -0,0 +1 @@
#include "tst-exec.c"

View File

@ -126,10 +126,10 @@ do_test (int argc, char *argv[])
int status; int status;
/* We must have /* We must have
- four parameters left of called initially - one or four parameters left if called initially
+ path for ld.so + path for ld.so optional
+ "--library-path" + "--library-path" optional
+ the library path + the library path optional
+ the application name + the application name
- three parameters left if called through re-execution - three parameters left if called through re-execution
+ file descriptor number which is supposed to be closed + file descriptor number which is supposed to be closed
@ -145,7 +145,7 @@ do_test (int argc, char *argv[])
return handle_restart (argv[1], argv[2], argv[3]); return handle_restart (argv[1], argv[2], argv[3]);
} }
if (argc != 5) if (argc != 2 && argc != 5)
error (EXIT_FAILURE, 0, "wrong number of arguments (%d)", argc); error (EXIT_FAILURE, 0, "wrong number of arguments (%d)", argc);
/* Prepare the test. We are creating two files: one which file descriptor /* Prepare the test. We are creating two files: one which file descriptor
@ -185,8 +185,12 @@ do_test (int argc, char *argv[])
snprintf (fd2name, sizeof fd2name, "%d", fd2); snprintf (fd2name, sizeof fd2name, "%d", fd2);
/* This is the child. Construct the command line. */ /* This is the child. Construct the command line. */
if (argc == 5)
execl (argv[1], argv[1], argv[2], argv[3], argv[4], "--direct", execl (argv[1], argv[1], argv[2], argv[3], argv[4], "--direct",
"--restart", fd1name, fd2name, name1, NULL); "--restart", fd1name, fd2name, name1, NULL);
else
execl (argv[1], argv[1], "--direct",
"--restart", fd1name, fd2name, name1, NULL);
error (EXIT_FAILURE, errno, "cannot exec"); error (EXIT_FAILURE, errno, "cannot exec");
} }

1
posix/tst-spawn-static.c Normal file
View File

@ -0,0 +1 @@
#include "tst-spawn.c"

View File

@ -169,12 +169,13 @@ do_test (int argc, char *argv[])
char fd3name[18]; char fd3name[18];
char fd4name[18]; char fd4name[18];
char *spargv[12]; char *spargv[12];
int i;
/* We must have /* We must have
- four parameters left of called initially - one or four parameters left if called initially
+ path for ld.so + path for ld.so optional
+ "--library-path" + "--library-path" optional
+ the library path + the library path optional
+ the application name + the application name
- five parameters left if called through re-execution - five parameters left if called through re-execution
+ file descriptor number which is supposed to be closed + file descriptor number which is supposed to be closed
@ -183,7 +184,7 @@ do_test (int argc, char *argv[])
+ thhe duped second descriptor + thhe duped second descriptor
+ the name of the closed descriptor + the name of the closed descriptor
*/ */
if (argc != (restart ? 6 : 5)) if (argc != (restart ? 6 : 2) && argc != (restart ? 6 : 5))
error (EXIT_FAILURE, 0, "wrong number of arguments (%d)", argc); error (EXIT_FAILURE, 0, "wrong number of arguments (%d)", argc);
if (restart) if (restart)
@ -235,18 +236,16 @@ do_test (int argc, char *argv[])
snprintf (fd3name, sizeof fd3name, "%d", fd3); snprintf (fd3name, sizeof fd3name, "%d", fd3);
snprintf (fd4name, sizeof fd4name, "%d", fd4); snprintf (fd4name, sizeof fd4name, "%d", fd4);
spargv[0] = argv[1]; for (i = 0; i < (argc == (restart ? 6 : 5) ? 4 : 1); i++)
spargv[1] = argv[2]; spargv[i] = argv[i + 1];
spargv[2] = argv[3]; spargv[i++] = (char *) "--direct";
spargv[3] = argv[4]; spargv[i++] = (char *) "--restart";
spargv[4] = (char *) "--direct"; spargv[i++] = fd1name;
spargv[5] = (char *) "--restart"; spargv[i++] = fd2name;
spargv[6] = fd1name; spargv[i++] = fd3name;
spargv[7] = fd2name; spargv[i++] = fd4name;
spargv[8] = fd3name; spargv[i++] = name1;
spargv[9] = fd4name; spargv[i] = NULL;
spargv[10] = name1;
spargv[11] = NULL;
if (posix_spawn (&pid, argv[1], &actions, NULL, spargv, environ) != 0) if (posix_spawn (&pid, argv[1], &actions, NULL, spargv, environ) != 0)
error (EXIT_FAILURE, errno, "posix_spawn"); error (EXIT_FAILURE, errno, "posix_spawn");