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/>. */
23 # ifdef USE_FOR_STRCHRNUL
24 # define TEST_NAME "strchrnul"
26 # define TEST_NAME "strchr"
29 # define TEST_NAME "wcschr"
31 #include "test-string.h"
34 # ifdef USE_FOR_STRCHRNUL
35 # define STRCHR strchrnul
36 # define stupid_STRCHR stupid_STRCHRNUL
37 # define simple_STRCHR simple_STRCHRNUL
39 # define STRCHR strchr
41 # define STRLEN strlen
43 # define BIG_CHAR CHAR_MAX
44 # define MIDDLE_CHAR 127
45 # define SMALL_CHAR 23
46 # define UCHAR unsigned char
49 # define STRCHR wcschr
50 # define STRLEN wcslen
52 # define BIG_CHAR WCHAR_MAX
53 # define MIDDLE_CHAR 1121
54 # define SMALL_CHAR 851
55 # define UCHAR wchar_t
58 #ifdef USE_FOR_STRCHRNUL
59 # define NULLRET(endptr) endptr
61 # define NULLRET(endptr) NULL
65 typedef CHAR
*(*proto_t
) (const CHAR
*, int);
68 simple_STRCHR (const CHAR
*s
, int c
)
70 for (; *s
!= (CHAR
) c
; ++s
)
72 return NULLRET ((CHAR
*) s
);
77 stupid_STRCHR (const CHAR
*s
, int c
)
79 size_t n
= STRLEN (s
) + 1;
83 return (CHAR
*) s
- 1;
84 return NULLRET ((CHAR
*) s
- 1);
87 IMPL (stupid_STRCHR
, 0)
88 IMPL (simple_STRCHR
, 0)
92 check_result (impl_t
*impl
, const CHAR
*s
, int c
, const CHAR
*exp_res
)
94 CHAR
*res
= CALL (impl
, s
, c
);
97 error (0, 0, "Wrong result in function %s %#x %p %p", impl
->name
,
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)
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. */
120 CHAR
*buf
= (CHAR
*) buf1
;
122 if ((align
+ len
) * sizeof (CHAR
) >= page_size
)
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)
133 buf
[align
+ len
] = 0;
137 buf
[align
+ pos
] = seek_char
;
138 result
= buf
+ align
+ pos
;
140 else if (seek_char
== 0)
141 result
= buf
+ align
+ len
;
143 result
= NULLRET (buf
+ align
+ len
);
145 FOR_EACH_IMPL (impl
, 0)
146 do_one_test (impl
, buf
+ align
, seek_char
, result
);
150 do_random_tests (void)
152 size_t i
, j
, n
, align
, pos
, len
;
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
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
)
176 j
= (pos
> len
? pos
: len
) + align
+ 64;
180 for (i
= 0; i
< j
; i
++)
182 if (i
== pos
+ align
)
184 else if (i
== len
+ align
)
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;
201 result
= (CHAR
*) (p
+ pos
+ align
);
202 else if (seek_char
== 0)
203 result
= (CHAR
*) (p
+ len
+ align
);
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
);
222 char s
[] __attribute__((aligned(16))) = "\xff";
224 char *exp_result
= stupid_STRCHR (s
, c
);
226 FOR_EACH_IMPL (impl
, 0)
227 check_result (impl
, s
, c
, exp_result
);
240 FOR_EACH_IMPL (impl
, 0)
241 printf ("\t%s", impl
->name
);
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
);
284 #include "../test-skeleton.c"