1 /* Test strlen functions.
2 Copyright (C) 1999-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Written by Jakub Jelinek <jakub@redhat.com>, 1999.
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.
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.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
22 # define TEST_NAME "strnlen"
24 # define TEST_NAME "wcsnlen"
26 #include "test-string.h"
29 # define STRNLEN strnlen
31 # define BIG_CHAR CHAR_MAX
32 # define MIDDLE_CHAR 127
33 # define SIMPLE_STRNLEN simple_strnlen
36 # define STRNLEN wcsnlen
38 # define BIG_CHAR WCHAR_MAX
39 # define MIDDLE_CHAR 1121
40 # define SIMPLE_STRNLEN simple_wcsnlen
43 typedef size_t (*proto_t
) (const CHAR
*, size_t);
44 size_t SIMPLE_STRNLEN (const CHAR
*, size_t);
46 IMPL (SIMPLE_STRNLEN
, 0)
50 SIMPLE_STRNLEN (const CHAR
*s
, size_t maxlen
)
54 for (i
= 0; i
< maxlen
&& s
[i
]; ++i
);
59 do_one_test (impl_t
*impl
, const CHAR
*s
, size_t maxlen
, size_t exp_len
)
61 size_t len
= CALL (impl
, s
, maxlen
);
64 error (0, 0, "Wrong result in function %s %zd %zd", impl
->name
,
72 do_test (size_t align
, size_t len
, size_t maxlen
, int max_char
)
77 if ((align
+ len
) * sizeof (CHAR
) >= page_size
)
80 CHAR
*buf
= (CHAR
*) (buf1
);
82 for (i
= 0; i
< len
; ++i
)
83 buf
[align
+ i
] = 1 + 11111 * i
% max_char
;
86 FOR_EACH_IMPL (impl
, 0)
87 do_one_test (impl
, (CHAR
*) (buf
+ align
), maxlen
, MIN (len
, maxlen
));
91 do_random_tests (void)
93 size_t i
, j
, n
, align
, len
;
94 CHAR
*p
= (CHAR
*) (buf1
+ page_size
- 512 * sizeof (CHAR
));
96 for (n
= 0; n
< ITERATIONS
; n
++)
98 align
= random () & 15;
99 len
= random () & 511;
100 if (len
+ align
> 510)
101 len
= 511 - align
- (random () & 7);
102 j
= len
+ align
+ 64;
106 for (i
= 0; i
< j
; i
++)
108 if (i
== len
+ align
)
112 p
[i
] = random () & 255;
113 if (i
>= align
&& i
< len
+ align
&& !p
[i
])
114 p
[i
] = (random () & 127) + 1;
118 FOR_EACH_IMPL (impl
, 1)
121 && CALL (impl
, (CHAR
*) (p
+ align
), len
- 1) != len
- 1)
123 error (0, 0, "Iteration %zd (limited) - wrong result in function %s (%zd) %zd != %zd, p %p",
124 n
, impl
->name
, align
,
125 CALL (impl
, (CHAR
*) (p
+ align
), len
- 1), len
- 1, p
);
128 if (CALL (impl
, (CHAR
*) (p
+ align
), len
) != len
)
130 error (0, 0, "Iteration %zd (exact) - wrong result in function %s (%zd) %zd != %zd, p %p",
131 n
, impl
->name
, align
,
132 CALL (impl
, (CHAR
*) (p
+ align
), len
), len
, p
);
135 if (CALL (impl
, (CHAR
*) (p
+ align
), len
+ 1) != len
)
137 error (0, 0, "Iteration %zd (long) - wrong result in function %s (%zd) %zd != %zd, p %p",
138 n
, impl
->name
, align
,
139 CALL (impl
, (CHAR
*) (p
+ align
), len
+ 1), len
, p
);
146 /* Tests meant to unveil fail on implementation that does not access bytes
147 around the page boundary accordingly. */
151 size_t i
, exp_len
, start_offset
, offset
;
152 /* Calculate the null character offset. */
153 size_t last_offset
= (page_size
/ sizeof (CHAR
)) - 1;
155 CHAR
*s
= (CHAR
*) buf2
;
156 memset (s
, 65, (last_offset
- 1));
159 /* Place short strings ending at page boundary. */
160 offset
= last_offset
;
161 for (i
= 0; i
< 128; i
++)
163 /* Decrease offset to stress several sizes and alignments. */
165 exp_len
= last_offset
- offset
;
166 FOR_EACH_IMPL (impl
, 0)
168 /* Varies maxlen value to cover the cases where it is:
169 - larger than length;
170 - slightly greater than length;
172 - slightly less than length. */
173 do_one_test (impl
, (CHAR
*) (s
+ offset
), page_size
, exp_len
);
174 do_one_test (impl
, (CHAR
*) (s
+ offset
), exp_len
+ 1, exp_len
);
175 do_one_test (impl
, (CHAR
*) (s
+ offset
), exp_len
, exp_len
);
177 do_one_test (impl
, (CHAR
*) (s
+ offset
), exp_len
- 1, exp_len
- 1);
181 /* Place long strings ending at page boundary. */
182 start_offset
= (last_offset
+ 1) / 2;
183 for (i
= 0; i
< 64; ++i
)
185 /* Increase offset to stress several alignments. */
186 offset
= start_offset
+ i
;
187 if (offset
>= (last_offset
+ 1))
189 exp_len
= last_offset
- offset
;
190 FOR_EACH_IMPL (impl
, 0)
192 /* Checks only for maxlen much larger than length because smaller
193 values are already covered in do_random_tests function. */
194 do_one_test (impl
, (CHAR
*) (s
+ offset
), page_size
, exp_len
);
207 FOR_EACH_IMPL (impl
, 0)
208 printf ("\t%s", impl
->name
);
211 for (i
= 1; i
< 8; ++i
)
213 do_test (0, i
, i
- 1, MIDDLE_CHAR
);
214 do_test (0, i
, i
, MIDDLE_CHAR
);
215 do_test (0, i
, i
+ 1, MIDDLE_CHAR
);
218 for (i
= 1; i
< 8; ++i
)
220 do_test (i
, i
, i
- 1, MIDDLE_CHAR
);
221 do_test (i
, i
, i
, MIDDLE_CHAR
);
222 do_test (i
, i
, i
+ 1, MIDDLE_CHAR
);
225 for (i
= 2; i
<= 10; ++i
)
227 do_test (0, 1 << i
, 5000, MIDDLE_CHAR
);
228 do_test (1, 1 << i
, 5000, MIDDLE_CHAR
);
231 for (i
= 1; i
< 8; ++i
)
232 do_test (0, i
, 5000, BIG_CHAR
);
234 for (i
= 1; i
< 8; ++i
)
235 do_test (i
, i
, 5000, BIG_CHAR
);
237 for (i
= 2; i
<= 10; ++i
)
239 do_test (0, 1 << i
, 5000, BIG_CHAR
);
240 do_test (1, 1 << i
, 5000, BIG_CHAR
);
248 #include <support/test-driver.c>