diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-10-08 13:04:15 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-10-08 16:11:13 +0200 |
commit | 32036901707cc86e16b8d9f65bb4686a9bbb0a5c (patch) | |
tree | 6561e14fbcc02fe5d7d943d721662e2d1eeaaae1 /posix/Makefile | |
parent | ca602c1536ce2777f95c07525f3c42d78812e665 (diff) | |
download | glibc-32036901707cc86e16b8d9f65bb4686a9bbb0a5c.tar.gz |
wordexp: Split out command execution tests from posix/wordexp-test
Once wordexp switches to posix_spawn, testing for command execution
based on fork handlers will not work anymore. Therefore, move these
subtests into a new test, posix/tst-wordexp-nocmd, which uses a
different form of command execution detection, based on PID
namespaces.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'posix/Makefile')
-rw-r--r-- | posix/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/posix/Makefile b/posix/Makefile index 0579596d9e..fe031eb450 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -100,7 +100,8 @@ tests := test-errno tstgetopt testfnm runtests runptests \ tst-posix_fadvise tst-posix_fadvise64 \ tst-sysconf-empty-chroot tst-glob_symlinks tst-fexecve \ tst-glob-tilde test-ssize-max tst-spawn4 bug-regex37 \ - bug-regex38 tst-regcomp-truncated tst-spawn-chdir + bug-regex38 tst-regcomp-truncated tst-spawn-chdir \ + tst-wordexp-nocmd tests-internal := bug-regex5 bug-regex20 bug-regex33 \ tst-rfc3484 tst-rfc3484-2 tst-rfc3484-3 \ tst-glob_lstat_compat tst-spawn4-compat |