Update copyright notices with scripts/update-copyrights
[glibc.git] / string / test-strchr.c
blob12cd9d84ecc8c1abb9f7f62f282aad8562ddc79b
1 /* Test and measure STRCHR functions.
2 Copyright (C) 1999-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Written by Jakub Jelinek <jakub@redhat.com>, 1999.
5 Added wcschr support by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>, 2011
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, see
19 <http://www.gnu.org/licenses/>. */
21 #define TEST_MAIN
22 #ifndef WIDE
23 # ifdef USE_FOR_STRCHRNUL
24 # define TEST_NAME "strchrnul"
25 # else
26 # define TEST_NAME "strchr"
27 # endif
28 #else
29 # define TEST_NAME "wcschr"
30 #endif
31 #include "test-string.h"
33 #ifndef WIDE
34 # ifdef USE_FOR_STRCHRNUL
35 # define STRCHR strchrnul
36 # define stupid_STRCHR stupid_STRCHRNUL
37 # define simple_STRCHR simple_STRCHRNUL
38 # else
39 # define STRCHR strchr
40 # endif
41 # define STRLEN strlen
42 # define CHAR char
43 # define BIG_CHAR CHAR_MAX
44 # define MIDDLE_CHAR 127
45 # define SMALL_CHAR 23
46 # define UCHAR unsigned char
47 #else
48 # include <wchar.h>
49 # define STRCHR wcschr
50 # define STRLEN wcslen
51 # define CHAR wchar_t
52 # define BIG_CHAR WCHAR_MAX
53 # define MIDDLE_CHAR 1121
54 # define SMALL_CHAR 851
55 # define UCHAR wchar_t
56 #endif
58 #ifdef USE_FOR_STRCHRNUL
59 # define NULLRET(endptr) endptr
60 #else
61 # define NULLRET(endptr) NULL
62 #endif
65 typedef CHAR *(*proto_t) (const CHAR *, int);
67 CHAR *
68 simple_STRCHR (const CHAR *s, int c)
70 for (; *s != (CHAR) c; ++s)
71 if (*s == '\0')
72 return NULLRET ((CHAR *) s);
73 return (CHAR *) s;
76 CHAR *
77 stupid_STRCHR (const CHAR *s, int c)
79 size_t n = STRLEN (s) + 1;
81 while (n--)
82 if (*s++ == (CHAR) c)
83 return (CHAR *) s - 1;
84 return NULLRET ((CHAR *) s - 1);
87 IMPL (stupid_STRCHR, 0)
88 IMPL (simple_STRCHR, 0)
89 IMPL (STRCHR, 1)
91 static int
92 check_result (impl_t *impl, const CHAR *s, int c, const CHAR *exp_res)
94 CHAR *res = CALL (impl, s, c);
95 if (res != exp_res)
97 error (0, 0, "Wrong result in function %s %#x %p %p", impl->name,
98 c, res, exp_res);
99 ret = 1;
100 return -1;
102 return 0;
105 static void
106 do_one_test (impl_t *impl, const CHAR *s, int c, const CHAR *exp_res)
108 if (check_result (impl, s, c, exp_res) < 0)
109 return;
112 static void
113 do_test (size_t align, size_t pos, size_t len, int seek_char, int max_char)
114 /* For wcschr: align here means align not in bytes,
115 but in wchar_ts, in bytes it will equal to align * (sizeof (wchar_t))
116 len for wcschr here isn't in bytes but it's number of wchar_t symbols. */
118 size_t i;
119 CHAR *result;
120 CHAR *buf = (CHAR *) buf1;
121 align &= 15;
122 if ((align + len) * sizeof (CHAR) >= page_size)
123 return;
125 for (i = 0; i < len; ++i)
127 buf[align + i] = 32 + 23 * i % max_char;
128 if (buf[align + i] == seek_char)
129 buf[align + i] = seek_char + 1;
130 else if (buf[align + i] == 0)
131 buf[align + i] = 1;
133 buf[align + len] = 0;
135 if (pos < len)
137 buf[align + pos] = seek_char;
138 result = buf + align + pos;
140 else if (seek_char == 0)
141 result = buf + align + len;
142 else
143 result = NULLRET (buf + align + len);
145 FOR_EACH_IMPL (impl, 0)
146 do_one_test (impl, buf + align, seek_char, result);
149 static void
150 do_random_tests (void)
152 size_t i, j, n, align, pos, len;
153 int seek_char;
154 CHAR *result;
155 UCHAR *p = (UCHAR *) (buf1 + page_size - 512 * sizeof (CHAR));
157 for (n = 0; n < ITERATIONS; n++)
159 /* For wcschr: align here means align not in bytes, but in wchar_ts,
160 in bytes it will equal to align * (sizeof (wchar_t)). */
161 align = random () & 15;
162 pos = random () & 511;
163 seek_char = random () & 255;
164 if (pos + align >= 511)
165 pos = 510 - align - (random () & 7);
166 /* len for wcschr here isn't in bytes but it's number of wchar_t
167 symbols. */
168 len = random () & 511;
169 if ((pos == len && seek_char)
170 || (pos > len && (random () & 1)))
171 len = pos + 1 + (random () & 7);
172 if (len + align >= 512)
173 len = 511 - align - (random () & 7);
174 if (pos == len && seek_char)
175 len = pos + 1;
176 j = (pos > len ? pos : len) + align + 64;
177 if (j > 512)
178 j = 512;
180 for (i = 0; i < j; i++)
182 if (i == pos + align)
183 p[i] = seek_char;
184 else if (i == len + align)
185 p[i] = 0;
186 else
188 p[i] = random () & 255;
189 if (i < pos + align && p[i] == seek_char)
190 p[i] = seek_char + 13;
191 if (i < len + align && !p[i])
193 p[i] = seek_char - 13;
194 if (!p[i])
195 p[i] = 140;
200 if (pos <= len)
201 result = (CHAR *) (p + pos + align);
202 else if (seek_char == 0)
203 result = (CHAR *) (p + len + align);
204 else
205 result = NULLRET ((CHAR *) (p + len + align));
207 FOR_EACH_IMPL (impl, 1)
208 if (CALL (impl, (CHAR *) (p + align), seek_char) != result)
210 error (0, 0, "Iteration %zd - wrong result in function \
211 %s (align in bytes: %zd, seek_char: %d, len: %zd, pos: %zd) %p != %p, p %p",
212 n, impl->name, align * sizeof (CHAR), seek_char, len, pos,
213 CALL (impl, (CHAR *) (p + align), seek_char), result, p);
214 ret = 1;
219 static void
220 check1 (void)
222 char s[] __attribute__((aligned(16))) = "\xff";
223 char c = '\xfe';
224 char *exp_result = stupid_STRCHR (s, c);
226 FOR_EACH_IMPL (impl, 0)
227 check_result (impl, s, c, exp_result);
231 test_main (void)
233 size_t i;
235 test_init ();
237 check1 ();
239 printf ("%20s", "");
240 FOR_EACH_IMPL (impl, 0)
241 printf ("\t%s", impl->name);
242 putchar ('\n');
244 for (i = 1; i < 8; ++i)
246 do_test (0, 16 << i, 2048, SMALL_CHAR, MIDDLE_CHAR);
247 do_test (i, 16 << i, 2048, SMALL_CHAR, MIDDLE_CHAR);
250 for (i = 1; i < 8; ++i)
252 do_test (i, 64, 256, SMALL_CHAR, MIDDLE_CHAR);
253 do_test (i, 64, 256, SMALL_CHAR, BIG_CHAR);
256 for (i = 0; i < 32; ++i)
258 do_test (0, i, i + 1, SMALL_CHAR, MIDDLE_CHAR);
259 do_test (0, i, i + 1, SMALL_CHAR, BIG_CHAR);
262 for (i = 1; i < 8; ++i)
264 do_test (0, 16 << i, 2048, 0, MIDDLE_CHAR);
265 do_test (i, 16 << i, 2048, 0, MIDDLE_CHAR);
268 for (i = 1; i < 8; ++i)
270 do_test (i, 64, 256, 0, MIDDLE_CHAR);
271 do_test (i, 64, 256, 0, BIG_CHAR);
274 for (i = 0; i < 32; ++i)
276 do_test (0, i, i + 1, 0, MIDDLE_CHAR);
277 do_test (0, i, i + 1, 0, BIG_CHAR);
280 do_random_tests ();
281 return ret;
284 #include "../test-skeleton.c"