]> git.ipfire.org Git - thirdparty/glibc.git/blame - string/test-memchr.c
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / string / test-memchr.c
CommitLineData
88eefd34 1/* Test memchr functions.
2b778ceb 2 Copyright (C) 1999-2021 Free Software Foundation, Inc.
58ef9ef7
RM
3 This file is part of the GNU C Library.
4 Written by Jakub Jelinek <jakub@redhat.com>, 1999.
5
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
59ba27a6 17 License along with the GNU C Library; if not, see
5a82c748 18 <https://www.gnu.org/licenses/>. */
58ef9ef7
RM
19
20#define TEST_MAIN
88eefd34
SL
21#ifndef WIDE
22# define TEST_NAME "memchr"
23#else
24# define TEST_NAME "wmemchr"
25#endif /* WIDE */
ceaa9889 26
58ef9ef7 27#include "test-string.h"
ceaa9889 28#include <stdint.h>
58ef9ef7 29
88eefd34
SL
30#ifndef WIDE
31# define MEMCHR memchr
32# define CHAR char
33# define UCHAR unsigned char
34# define SIMPLE_MEMCHR simple_memchr
35# define BIG_CHAR CHAR_MAX
36# define SMALL_CHAR 127
37#else
38# include <wchar.h>
39# define MEMCHR wmemchr
40# define CHAR wchar_t
41# define UCHAR wchar_t
42# define SIMPLE_MEMCHR simple_wmemchr
43# define BIG_CHAR WCHAR_MAX
44# define SMALL_CHAR 1273
45#endif /* WIDE */
46
47typedef CHAR *(*proto_t) (const CHAR *, int, size_t);
48CHAR *SIMPLE_MEMCHR (const CHAR *, int, size_t);
49
50IMPL (SIMPLE_MEMCHR, 0)
51IMPL (MEMCHR, 1)
52
53CHAR *
54SIMPLE_MEMCHR (const CHAR *s, int c, size_t n)
58ef9ef7
RM
55{
56 while (n--)
88eefd34
SL
57 if (*s++ == (CHAR) c)
58 return (CHAR *) s - 1;
58ef9ef7
RM
59 return NULL;
60}
61
62static void
88eefd34 63do_one_test (impl_t *impl, const CHAR *s, int c, size_t n, CHAR *exp_res)
58ef9ef7 64{
88eefd34 65 CHAR *res = CALL (impl, s, c, n);
58ef9ef7
RM
66 if (res != exp_res)
67 {
68 error (0, 0, "Wrong result in function %s %p %p", impl->name,
69 res, exp_res);
70 ret = 1;
71 return;
72 }
58ef9ef7
RM
73}
74
75static void
b2246379 76do_test (size_t align, size_t pos, size_t len, size_t n, int seek_char)
58ef9ef7
RM
77{
78 size_t i;
88eefd34 79 CHAR *result;
58ef9ef7 80
88eefd34 81 if ((align + len) * sizeof (CHAR) >= page_size)
58ef9ef7 82 return;
c9df3df9 83
88eefd34
SL
84 CHAR *buf = (CHAR *) (buf1);
85
58ef9ef7
RM
86 for (i = 0; i < len; ++i)
87 {
88eefd34
SL
88 buf[align + i] = 1 + 23 * i % SMALL_CHAR;
89 if (buf[align + i] == seek_char)
90 buf[align + i] = seek_char + 1;
58ef9ef7 91 }
88eefd34 92 buf[align + len] = 0;
58ef9ef7
RM
93
94 if (pos < len)
95 {
88eefd34
SL
96 buf[align + pos] = seek_char;
97 buf[align + len] = -seek_char;
98 result = (CHAR *) (buf + align + pos);
58ef9ef7
RM
99 }
100 else
101 {
102 result = NULL;
88eefd34 103 buf[align + len] = seek_char;
58ef9ef7
RM
104 }
105
58ef9ef7 106 FOR_EACH_IMPL (impl, 0)
b2246379 107 do_one_test (impl, (CHAR *) (buf + align), seek_char, n, result);
58ef9ef7
RM
108}
109
110static void
111do_random_tests (void)
112{
113 size_t i, j, n, align, pos, len;
114 int seek_char;
88eefd34
SL
115 CHAR *result;
116 UCHAR *p = (UCHAR *) (buf1 + page_size) - 512;
58ef9ef7
RM
117
118 for (n = 0; n < ITERATIONS; n++)
119 {
120 align = random () & 15;
121 pos = random () & 511;
122 if (pos + align >= 512)
123 pos = 511 - align - (random () & 7);
124 len = random () & 511;
125 if (pos >= len)
126 len = pos + (random () & 7);
127 if (len + align >= 512)
88eefd34
SL
128 len = 512 - align - (random () & 7);
129 seek_char = random () & BIG_CHAR;
58ef9ef7
RM
130 j = len + align + 64;
131 if (j > 512)
88eefd34 132 j = 512;
58ef9ef7
RM
133
134 for (i = 0; i < j; i++)
135 {
136 if (i == pos + align)
137 p[i] = seek_char;
138 else
139 {
88eefd34 140 p[i] = random () & BIG_CHAR;
58ef9ef7
RM
141 if (i < pos + align && p[i] == seek_char)
142 p[i] = seek_char + 13;
143 }
144 }
145
146 if (pos < len)
fab8238d
JJ
147 {
148 size_t r = random ();
149 if ((r & 31) == 0)
150 len = ~(uintptr_t) (p + align) - ((r >> 5) & 31);
88eefd34 151 result = (CHAR *) (p + pos + align);
fab8238d 152 }
58ef9ef7
RM
153 else
154 result = NULL;
155
156 FOR_EACH_IMPL (impl, 1)
88eefd34 157 if (CALL (impl, (CHAR *) (p + align), seek_char, len) != result)
58ef9ef7
RM
158 {
159 error (0, 0, "Iteration %zd - wrong result in function %s (%zd, %d, %zd, %zd) %p != %p, p %p",
160 n, impl->name, align, seek_char, len, pos,
88eefd34 161 CALL (impl, (CHAR *) (p + align), seek_char, len),
0317eaec 162 result, p);
58ef9ef7
RM
163 ret = 1;
164 }
165 }
166}
167
168int
169test_main (void)
170{
b2246379 171 size_t i, j;
58ef9ef7
RM
172
173 test_init ();
174
175 printf ("%20s", "");
176 FOR_EACH_IMPL (impl, 0)
177 printf ("\t%s", impl->name);
178 putchar ('\n');
179
180 for (i = 1; i < 8; ++i)
181 {
acf6d579
L
182 /* Test n == 0. */
183 do_test (i, i, 0, 0, 23);
184 do_test (i, i, 0, 0, 0);
185
b2246379
AZ
186 do_test (0, 16 << i, 2048, 2048, 23);
187 do_test (i, 64, 256, 256, 23);
188 do_test (0, 16 << i, 2048, 2048, 0);
189 do_test (i, 64, 256, 256, 0);
190
191 /* Check for large input sizes and for these cases we need to
8b1f57f4
AZ
192 make sure the byte is within the size range (that's why
193 7 << i must be smaller than 2048). */
b2246379
AZ
194 do_test (0, 7 << i, 2048, SIZE_MAX, 23);
195 do_test (0, 2048 - i, 2048, SIZE_MAX, 23);
196 do_test (i, 64, 256, SIZE_MAX, 23);
197 do_test (0, 7 << i, 2048, SIZE_MAX, 0);
198 do_test (0, 2048 - i, 2048, SIZE_MAX, 0);
199 do_test (i, 64, 256, SIZE_MAX, 0);
58ef9ef7 200 }
b2246379 201
3daef2c8 202 for (i = 1; i < 64; ++i)
b2246379 203 {
3daef2c8 204 for (j = 1; j < 64; j++)
b2246379 205 {
3daef2c8
AZ
206 do_test (0, 64 - j, 64, SIZE_MAX, 23);
207 do_test (i, 64 - j, 64, SIZE_MAX, 23);
b2246379
AZ
208 }
209 }
210
58ef9ef7
RM
211 for (i = 1; i < 32; ++i)
212 {
b2246379
AZ
213 do_test (0, i, i + 1, i + 1, 23);
214 do_test (0, i, i + 1, i + 1, 0);
58ef9ef7
RM
215 }
216
3abeeec5
AZ
217 /* BZ#21182 - wrong overflow calculation for i686 implementation
218 with address near end of the page. */
219 for (i = 2; i < 16; ++i)
220 /* page_size is in fact getpagesize() * 2. */
221 do_test (page_size / 2 - i, i, i, 1, 0x9B);
222
58ef9ef7
RM
223 do_random_tests ();
224 return ret;
225}
226
fb82116f 227#include <support/test-driver.c>