diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-18 12:22:11 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-18 12:22:11 +0000 |
commit | 80a18298f02005310cf0edc6163ae5eff5fad09a (patch) | |
tree | fa4db80e6d033ac93658d00c347eae9dae768d45 /dirent/Makefile | |
parent | 9eecb5e8f3903a6fe66ac88f9218935130e77042 (diff) | |
download | glibc-80a18298f02005310cf0edc6163ae5eff5fad09a.tar.gz glibc-80a18298f02005310cf0edc6163ae5eff5fad09a.tar.xz glibc-80a18298f02005310cf0edc6163ae5eff5fad09a.zip |
Update.
* dirent/list.c (test): Return error value. (main): Exit with error value. * sysdeps/unix/opendir.c (__opendir): Add missing initialization. * Makefile (distribute): Add test-skeleton.c. * test-skeleton.c: New file. * dirent/Makefile (tests): Add opendir-tst1. * dirent/opendir-tst1.c: New file. 1998-03-18 Ulrich Drepper <drepper@cygnus.com> Optimize memory handling.
Diffstat (limited to 'dirent/Makefile')
-rw-r--r-- | dirent/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dirent/Makefile b/dirent/Makefile index 7c36510ca1..e763dabeb7 100644 --- a/dirent/Makefile +++ b/dirent/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc. +# Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -27,6 +27,8 @@ routines := opendir closedir readdir readdir_r rewinddir \ getdents dirfd readdir64 readdir64_r distribute := dirstream.h -tests := list tst-seekdir +tests := list tst-seekdir opendir-tst1 include ../Rules + +opendir-tst1.args = --test-dir=${objdir} |