1 /* Test and measure STRCHR functions.
2 Copyright (C) 1999, 2002, 2003, 2011 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, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23 #include "test-string.h"
26 # ifdef USE_FOR_STRCHRNUL
27 # define STRCHR strchrnul
28 # define stupid_STRCHR stupid_STRCHRNUL
29 # define simple_STRCHR simple_STRCHRNUL
31 # define STRCHR strchr
33 # define STRLEN strlen
35 # define BIG_CHAR CHAR_MAX
36 # define MIDDLE_CHAR 127
37 # define SMALL_CHAR 23
38 # define UCHAR unsigned char
41 # define STRCHR wcschr
42 # define STRLEN wcslen
44 # define BIG_CHAR WCHAR_MAX
45 # define MIDDLE_CHAR 1121
46 # define SMALL_CHAR 851
47 # define UCHAR wchar_t
50 #ifdef USE_FOR_STRCHRNUL
51 # define NULLRET(endptr) endptr
53 # define NULLRET(endptr) NULL
57 typedef CHAR
*(*proto_t
) (const CHAR
*, int);
60 simple_STRCHR (const CHAR
*s
, int c
)
62 for (; *s
!= (CHAR
) c
; ++s
)
64 return NULLRET ((CHAR
*) s
);
69 stupid_STRCHR (const CHAR
*s
, int c
)
71 size_t n
= STRLEN (s
) + 1;
75 return (CHAR
*) s
- 1;
76 return NULLRET ((CHAR
*) s
- 1);
79 IMPL (stupid_STRCHR
, 0)
80 IMPL (simple_STRCHR
, 0)
84 do_one_test (impl_t
*impl
, const CHAR
*s
, int c
, const CHAR
*exp_res
)
86 CHAR
*res
= CALL (impl
, s
, c
);
89 error (0, 0, "Wrong result in function %s %#x %p %p", impl
->name
,
97 hp_timing_t start
__attribute ((unused
));
98 hp_timing_t stop
__attribute ((unused
));
99 hp_timing_t best_time
= ~ (hp_timing_t
) 0;
102 for (i
= 0; i
< 32; ++i
)
104 HP_TIMING_NOW (start
);
106 HP_TIMING_NOW (stop
);
107 HP_TIMING_BEST (best_time
, start
, stop
);
110 printf ("\t%zd", (size_t) best_time
);
115 do_test (size_t align
, size_t pos
, size_t len
, int seek_char
, int max_char
)
116 /* For wcschr: align here means align not in bytes,
117 but in wchar_ts, in bytes it will equal to align * (sizeof (wchar_t))
118 len for wcschr here isn't in bytes but it's number of wchar_t symbols. */
122 CHAR
*buf
= (CHAR
*) buf1
;
124 if ((align
+ len
) * sizeof (CHAR
) >= page_size
)
127 for (i
= 0; i
< len
; ++i
)
129 buf
[align
+ i
] = 32 + 23 * i
% max_char
;
130 if (buf
[align
+ i
] == seek_char
)
131 buf
[align
+ i
] = seek_char
+ 1;
132 else if (buf
[align
+ i
] == 0)
135 buf
[align
+ len
] = 0;
139 buf
[align
+ pos
] = seek_char
;
140 result
= buf
+ align
+ pos
;
142 else if (seek_char
== 0)
143 result
= buf
+ align
+ len
;
145 result
= NULLRET (buf
+ align
+ len
);
148 printf ("Length %4zd, alignment in bytes %2zd:",
149 pos
, align
* sizeof (CHAR
));
151 FOR_EACH_IMPL (impl
, 0)
152 do_one_test (impl
, buf
+ align
, seek_char
, result
);
159 do_random_tests (void)
161 size_t i
, j
, n
, align
, pos
, len
;
164 UCHAR
*p
= (UCHAR
*) (buf1
+ page_size
- 512 * sizeof (CHAR
));
166 for (n
= 0; n
< ITERATIONS
; n
++)
168 /* For wcschr: align here means align not in bytes, but in wchar_ts,
169 in bytes it will equal to align * (sizeof (wchar_t)). */
170 align
= random () & 15;
171 pos
= random () & 511;
172 seek_char
= random () & 255;
173 if (pos
+ align
>= 511)
174 pos
= 510 - align
- (random () & 7);
175 /* len for wcschr here isn't in bytes but it's number of wchar_t
177 len
= random () & 511;
178 if ((pos
== len
&& seek_char
)
179 || (pos
> len
&& (random () & 1)))
180 len
= pos
+ 1 + (random () & 7);
181 if (len
+ align
>= 512)
182 len
= 511 - align
- (random () & 7);
183 if (pos
== len
&& seek_char
)
185 j
= (pos
> len
? pos
: len
) + align
+ 64;
189 for (i
= 0; i
< j
; i
++)
191 if (i
== pos
+ align
)
193 else if (i
== len
+ align
)
197 p
[i
] = random () & 255;
198 if (i
< pos
+ align
&& p
[i
] == seek_char
)
199 p
[i
] = seek_char
+ 13;
200 if (i
< len
+ align
&& !p
[i
])
202 p
[i
] = seek_char
- 13;
210 result
= (CHAR
*) (p
+ pos
+ align
);
211 else if (seek_char
== 0)
212 result
= (CHAR
*) (p
+ len
+ align
);
214 result
= NULLRET ((CHAR
*) (p
+ len
+ align
));
216 FOR_EACH_IMPL (impl
, 1)
217 if (CALL (impl
, (CHAR
*) (p
+ align
), seek_char
) != result
)
219 error (0, 0, "Iteration %zd - wrong result in function \
220 %s (align in bytes: %zd, seek_char: %d, len: %zd, pos: %zd) %p != %p, p %p",
221 n
, impl
->name
, align
* sizeof (CHAR
), seek_char
, len
, pos
,
222 CALL (impl
, (CHAR
*) (p
+ align
), seek_char
), result
, p
);
236 FOR_EACH_IMPL (impl
, 0)
237 printf ("\t%s", impl
->name
);
240 for (i
= 1; i
< 8; ++i
)
242 do_test (0, 16 << i
, 2048, SMALL_CHAR
, MIDDLE_CHAR
);
243 do_test (i
, 16 << i
, 2048, SMALL_CHAR
, MIDDLE_CHAR
);
246 for (i
= 1; i
< 8; ++i
)
248 do_test (i
, 64, 256, SMALL_CHAR
, MIDDLE_CHAR
);
249 do_test (i
, 64, 256, SMALL_CHAR
, BIG_CHAR
);
252 for (i
= 0; i
< 32; ++i
)
254 do_test (0, i
, i
+ 1, SMALL_CHAR
, MIDDLE_CHAR
);
255 do_test (0, i
, i
+ 1, SMALL_CHAR
, BIG_CHAR
);
258 for (i
= 1; i
< 8; ++i
)
260 do_test (0, 16 << i
, 2048, 0, MIDDLE_CHAR
);
261 do_test (i
, 16 << i
, 2048, 0, MIDDLE_CHAR
);
264 for (i
= 1; i
< 8; ++i
)
266 do_test (i
, 64, 256, 0, MIDDLE_CHAR
);
267 do_test (i
, 64, 256, 0, BIG_CHAR
);
270 for (i
= 0; i
< 32; ++i
)
272 do_test (0, i
, i
+ 1, 0, MIDDLE_CHAR
);
273 do_test (0, i
, i
+ 1, 0, BIG_CHAR
);
280 #include "../test-skeleton.c"