diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-10-05 13:32:07 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-10-05 13:32:07 -0700 |
commit | 03759f47db62930f2dddf1c9733ef89b9d99e2da (patch) | |
tree | ff23ba8b81b00366f0cbc0c890e9e7487b4497ae /string/bug-strchr1.c | |
parent | fb228a2d94a130eda38c8794b0f264aa9f0e4714 (diff) | |
download | glibc-03759f47db62930f2dddf1c9733ef89b9d99e2da.zip glibc-03759f47db62930f2dddf1c9733ef89b9d99e2da.tar.gz glibc-03759f47db62930f2dddf1c9733ef89b9d99e2da.tar.bz2 |
Test strcasestr/strchr/strstr under all implementations
Diffstat (limited to 'string/bug-strchr1.c')
-rw-r--r-- | string/bug-strchr1.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/string/bug-strchr1.c b/string/bug-strchr1.c deleted file mode 100644 index 21155d8..0000000 --- a/string/bug-strchr1.c +++ /dev/null @@ -1,14 +0,0 @@ -#include <stdio.h> -#include <string.h> - -static int -do_test (void) -{ - char s[] __attribute__((aligned(16))) = "\xff"; - char *p = strchr (s, '\xfe'); - printf ("%p\n", p); - return p != NULL; -} - -#define TEST_FUNCTION do_test () -#include "../test-skeleton.c" |