From e8c1660f7ba480c5a17103b557941fc6db7a5146 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 8 Nov 2002 22:10:01 +0000 Subject: * string/test-strchr.c (stupid_strchr): New function. (do_random_tests): Make sure the string is zero terminated. * string/test-strpbrk.c (stupid_strpbrk): New function. (do_random_tests): Make sure the string is zero terminated. * string/test-strcmp.c (stupid_strcmp): New function. (do_random_tests): Make sure the strings are zero terminated. * string/test-strspn.c (stupid_strspn): New function. (simple_strspn): Rename rej argument to acc. (do_random_tests): Make sure the string is zero terminated. * string/test-strcspn.c (stupid_strcspn): New function. * string/test-strncpy.c (stupid_strncpy): New function. * string/test-stpncpy.c (stupid_stpncpy): New function. * string/test-strncmp.c (stupid_strncmp): New function. (do_random_tests): Make sure the strings are zero terminated. * string/test-string.h (impl_t): Change test into long. (IMPL): Add __attribute__((aligned (sizeof (void *)))). --- string/test-strchr.c | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) (limited to 'string/test-strchr.c') diff --git a/string/test-strchr.c b/string/test-strchr.c index 72f7ec9557..9483e719c0 100644 --- a/string/test-strchr.c +++ b/string/test-strchr.c @@ -23,7 +23,9 @@ typedef char *(*proto_t) (const char *, int); char *simple_strchr (const char *, int); +char *stupid_strchr (const char *, int); +IMPL (stupid_strchr, 0) IMPL (simple_strchr, 0) IMPL (strchr, 1) @@ -36,6 +38,17 @@ simple_strchr (const char *s, int c) return (char *) s; } +char * +stupid_strchr (const char *s, int c) +{ + size_t n = strlen (s) + 1; + + while (n--) + if (*s++ == (char) c) + return (char *) s - 1; + return NULL; +} + static void do_one_test (impl_t *impl, const char *s, int c, char *exp_res) { @@ -115,15 +128,18 @@ do_random_tests (void) { align = random () & 15; pos = random () & 511; + seek_char = random () & 255; if (pos + align >= 511) pos = 510 - align - (random () & 7); len = random () & 511; - if (pos >= len) - len = pos + (random () & 7); + if ((pos == len && seek_char) + || (pos > len && (random () & 1))) + len = pos + 1 + (random () & 7); if (len + align >= 512) len = 511 - align - (random () & 7); - seek_char = random () & 255; - j = len + align + 64; + if (pos == len && seek_char) + len = pos + 1; + j = (pos > len ? pos : len) + align + 64; if (j > 512) j = 512; -- cgit v1.2.3