diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-02-23 02:46:08 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-02-23 02:46:08 +0000 |
commit | f9ab9ba9aba6426845aca1731bd9d9fea089432c (patch) | |
tree | cd6c6f7cad28b6c4bd26ca00750ff573d773a968 | |
parent | 53e5696b30660410b150074d86a0c93db870b0c9 (diff) | |
download | glibc-f9ab9ba9aba6426845aca1731bd9d9fea089432c.tar.gz glibc-f9ab9ba9aba6426845aca1731bd9d9fea089432c.tar.xz glibc-f9ab9ba9aba6426845aca1731bd9d9fea089432c.zip |
* posix/Makefile (tests): Add tst-execvp1, tst-execvp2, tst-execlp1,
tst-execlp2, tst-execv1, tst-execv2, tst-execl1, tst-execl2, tst-execve1, tst-execve2, tst-execle1, and tst-execle2. * posix/tst-execl1.c: New file. * posix/tst-execl2.c: New file. * posix/tst-execle1.c: New file. * posix/tst-execle2.c: New file. * posix/tst-execlp1.c: New file. * posix/tst-execlp2.c: New file. * posix/tst-execv1.c: New file. * posix/tst-execv2.c: New file. * posix/tst-execve1.c: New file. * posix/tst-execve2.c: New file. * posix/tst-execvp1.c: New file. * posix/tst-execvp2.c: New file.
-rw-r--r-- | ChangeLog | 18 | ||||
-rw-r--r-- | posix/Makefile | 5 |
2 files changed, 22 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 160dbbc678..ff21233a2d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,21 @@ +2005-02-22 Ulrich Drepper <drepper@redhat.com> + + * posix/Makefile (tests): Add tst-execvp1, tst-execvp2, tst-execlp1, + tst-execlp2, tst-execv1, tst-execv2, tst-execl1, tst-execl2, + tst-execve1, tst-execve2, tst-execle1, and tst-execle2. + * posix/tst-execl1.c: New file. + * posix/tst-execl2.c: New file. + * posix/tst-execle1.c: New file. + * posix/tst-execle2.c: New file. + * posix/tst-execlp1.c: New file. + * posix/tst-execlp2.c: New file. + * posix/tst-execv1.c: New file. + * posix/tst-execv2.c: New file. + * posix/tst-execve1.c: New file. + * posix/tst-execve2.c: New file. + * posix/tst-execvp1.c: New file. + * posix/tst-execvp2.c: New file. + 2005-02-22 Roland McGrath <roland@redhat.com> * include/signal.h: Revert last change. diff --git a/posix/Makefile b/posix/Makefile index f79d079320..5100cf6bea 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -83,7 +83,10 @@ tests := tstgetopt testfnm runtests runptests \ tst-nice tst-nanosleep tst-regex2 \ transbug tst-rxspencer tst-pcre tst-boost \ bug-ga1 tst-vfork1 tst-vfork2 tst-waitid \ - tst-getaddrinfo2 bug-glob1 bug-glob2 tst-sysconf + tst-getaddrinfo2 bug-glob1 bug-glob2 tst-sysconf \ + tst-execvp1 tst-execvp2 tst-execlp1 tst-execlp2 \ + tst-execv1 tst-execv2 tst-execl1 tst-execl2 \ + tst-execve1 tst-execve2 tst-execle1 tst-execle2 xtests := bug-ga2 ifeq (yes,$(build-shared)) test-srcs := globtest |