diff options
author | Ulrich Drepper <drepper@gmail.com> | 2010-10-06 13:48:51 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2010-10-06 13:48:51 -0400 |
commit | 67a67b950be9741a4cf1ff3e75572204b06bec2e (patch) | |
tree | 9f24548e525c47f3715e4fac61375f8b8cbcbb0c /string | |
parent | 5fb308bca2f333dcc835945be85e165cd7843d5b (diff) | |
download | glibc-67a67b950be9741a4cf1ff3e75572204b06bec2e.tar glibc-67a67b950be9741a4cf1ff3e75572204b06bec2e.tar.gz glibc-67a67b950be9741a4cf1ff3e75572204b06bec2e.tar.bz2 glibc-67a67b950be9741a4cf1ff3e75572204b06bec2e.zip |
Add test case for strstr problem.
Diffstat (limited to 'string')
-rw-r--r-- | string/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/string/Makefile b/string/Makefile index cc2da10a4e..19130dd63a 100644 --- a/string/Makefile +++ b/string/Makefile @@ -55,7 +55,8 @@ tests := tester inl-tester noinl-tester testcopy test-ffs \ bug-strncat1 bug-strspn1 bug-strpbrk1 tst-bswap \ tst-strtok tst-strxfrm bug-strcoll1 tst-strfry \ bug-strtok1 $(addprefix test-,$(strop-tests)) \ - bug-envz1 tst-strxfrm2 tst-endian tst-svc2 + bug-envz1 tst-strxfrm2 tst-endian tst-svc2 \ + bug-strstr1 distribute := memcopy.h pagecopy.h tst-svc.expect test-string.h \ str-two-way.h @@ -74,6 +75,7 @@ CFLAGS-tst-strlen.c = -fno-builtin CFLAGS-stratcliff.c = -fno-builtin CFLAGS-test-ffs.c = -fno-builtin CFLAGS-tst-inlcall.c = -fno-builtin +CFLAGS-bug-strstr1.c = -fno-builtin ifeq ($(cross-compiling),no) tests: $(objpfx)tst-svc.out |