diff options
author | Roland McGrath <roland@gnu.org> | 2002-11-07 19:15:01 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-11-07 19:15:01 +0000 |
commit | 58ef9ef7bcbe3df172d9ff5fa840a63d89a19df4 (patch) | |
tree | 707f53302db4e5a0d10362716902c53222dfb939 /string/Makefile | |
parent | cbf900b43010058d8489ce32ae43fb06a66410c1 (diff) | |
download | glibc-58ef9ef7bcbe3df172d9ff5fa840a63d89a19df4.zip glibc-58ef9ef7bcbe3df172d9ff5fa840a63d89a19df4.tar.gz glibc-58ef9ef7bcbe3df172d9ff5fa840a63d89a19df4.tar.bz2 |
* string/test-string.h: New file.
* string/test-strlen.c: New file.
* string/test-string.h: New file.
* string/test-strcmp.c: New file.
* string/test-strchr.c: New file.
* string/test-strrchr.c: New file.
* string/test-strcpy.c: New file.
* string/test-stpcpy.c: New file.
* string/test-strncpy.c: New file.
* string/test-stpncpy.c: New file.
* string/test-strpbrk.c: New file.
* string/test-strcspn.c: New file.
* string/test-strspn.c: New file.
* string/test-strcat.c: New file.
* string/test-strncmp.c: New file.
* string/test-memchr.c: New file.
* string/test-memcmp.c: New file.
* string/test-memset.c: New file.
* string/test-memcpy.c: New file.
* string/test-mempcpy.c: New file.
* string/test-memmove.c: New file.
* string/Makefile (strop-tests): New variable.
(tests): Add strop-tests.
(distribute): Add test-string.h.
Diffstat (limited to 'string/Makefile')
-rw-r--r-- | string/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/string/Makefile b/string/Makefile index eed07fc..7e2220e 100644 --- a/string/Makefile +++ b/string/Makefile @@ -45,11 +45,15 @@ routines := strcat strchr strcmp strcoll strcpy strcspn \ # for -fbounded-pointer compiles. Glibc uses memchr for explicit checks. o-objects.ob := memcpy.o memset.o memchr.o +strop-tests := memchr memcmp memcpy memmove mempcpy memset stpcpy \ + stpncpy strcat strchr strcmp strcpy strcspn strlen \ + strncmp strncpy strpbrk strrchr strspn tests := tester inl-tester noinl-tester testcopy test-ffs \ tst-strlen stratcliff tst-svc tst-inlcall \ bug-strncat1 bug-strspn1 bug-strpbrk1 tst-bswap \ - tst-strtok tst-strxfrm bug-strcoll1 -distribute := memcopy.h pagecopy.h tst-svc.expect + tst-strtok tst-strxfrm bug-strcoll1 \ + $(addprefix test-,$(strop-tests)) +distribute := memcopy.h pagecopy.h tst-svc.expect test-string.h include ../Rules |