1 /* Test and measure strncasecmp functions.
2 Copyright (C) 1999-2013 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 "strncasecmp"
23 #include "test-string.h"
25 typedef int (*proto_t
) (const char *, const char *, size_t);
26 static int simple_strncasecmp (const char *, const char *, size_t);
27 static int stupid_strncasecmp (const char *, const char *, size_t);
29 IMPL (stupid_strncasecmp
, 0)
30 IMPL (simple_strncasecmp
, 0)
34 simple_strncasecmp (const char *s1
, const char *s2
, size_t n
)
41 while ((ret
= ((unsigned char) tolower (*s1
)
42 - (unsigned char) tolower (*s2
))) == 0
53 stupid_strncasecmp (const char *s1
, const char *s2
, size_t max
)
55 size_t ns1
= strlen (s1
) + 1;
56 size_t ns2
= strlen (s2
) + 1;
57 size_t n
= ns1
< ns2
? ns1
: ns2
;
64 if ((ret
= ((unsigned char) tolower (*s1
)
65 - (unsigned char) tolower (*s2
))) != 0)
74 check_result (impl_t
*impl
, const char *s1
, const char *s2
, size_t n
,
77 int result
= CALL (impl
, s1
, s2
, n
);
78 if ((exp_result
== 0 && result
!= 0)
79 || (exp_result
< 0 && result
>= 0)
80 || (exp_result
> 0 && result
<= 0))
82 error (0, 0, "Wrong result in function %s %d %d", impl
->name
,
92 do_one_test (impl_t
*impl
, const char *s1
, const char *s2
, size_t n
,
95 if (check_result (impl
, s1
, s2
, n
, exp_result
) < 0)
100 hp_timing_t start
__attribute ((unused
));
101 hp_timing_t stop
__attribute ((unused
));
102 hp_timing_t best_time
= ~ (hp_timing_t
) 0;
105 for (i
= 0; i
< 32; ++i
)
107 HP_TIMING_NOW (start
);
108 CALL (impl
, s1
, s2
, n
);
109 HP_TIMING_NOW (stop
);
110 HP_TIMING_BEST (best_time
, start
, stop
);
113 printf ("\t%zd", (size_t) best_time
);
118 do_test (size_t align1
, size_t align2
, size_t n
, size_t len
, int max_char
,
128 if (align1
+ len
+ 1 >= page_size
)
132 if (align2
+ len
+ 1 >= page_size
)
135 s1
= (char *) (buf1
+ align1
);
136 s2
= (char *) (buf2
+ align2
);
138 for (i
= 0; i
< len
; i
++)
140 s1
[i
] = toupper (1 + 23 * i
% max_char
);
141 s2
[i
] = tolower (s1
[i
]);
144 s1
[len
] = s2
[len
] = 0;
146 s2
[len
+ 1] = 24 + exp_result
;
147 if ((s2
[len
- 1] == 'z' && exp_result
== -1)
148 || (s2
[len
- 1] == 'a' && exp_result
== 1))
149 s1
[len
- 1] += exp_result
;
151 s2
[len
- 1] -= exp_result
;
154 printf ("Length %4zd, alignment %2zd/%2zd:", len
, align1
, align2
);
156 FOR_EACH_IMPL (impl
, 0)
157 do_one_test (impl
, s1
, s2
, n
, exp_result
);
164 do_random_tests (void)
166 size_t i
, j
, n
, align1
, align2
, pos
, len1
, len2
;
169 unsigned char *p1
= buf1
+ page_size
- 512;
170 unsigned char *p2
= buf2
+ page_size
- 512;
172 for (n
= 0; n
< ITERATIONS
; n
++)
174 align1
= random () & 31;
176 align2
= random () & 31;
178 align2
= align1
+ (random () & 24);
179 pos
= random () & 511;
180 j
= align1
> align2
? align1
: align2
;
182 pos
= 510 - j
- (random () & 7);
183 len1
= random () & 511;
184 if (pos
>= len1
&& (random () & 1))
185 len1
= pos
+ (random () & 7);
187 len1
= 511 - j
- (random () & 7);
191 len2
= len1
+ (len1
!= 511 - j
? random () % (511 - j
- len1
) : 0);
192 j
= (pos
> len2
? pos
: len2
) + align1
+ 64;
195 for (i
= 0; i
< j
; ++i
)
197 p1
[i
] = tolower (random () & 255);
198 if (i
< len1
+ align1
&& !p1
[i
])
200 p1
[i
] = tolower (random () & 255);
202 p1
[i
] = tolower (1 + (random () & 127));
205 for (i
= 0; i
< j
; ++i
)
207 p2
[i
] = toupper (random () & 255);
208 if (i
< len2
+ align2
&& !p2
[i
])
210 p2
[i
] = toupper (random () & 255);
212 toupper (p2
[i
] = 1 + (random () & 127));
217 memcpy (p2
+ align2
, p1
+ align1
, pos
);
220 if (tolower (p2
[align2
+ pos
]) == p1
[align1
+ pos
])
222 p2
[align2
+ pos
] = toupper (random () & 255);
223 if (tolower (p2
[align2
+ pos
]) == p1
[align1
+ pos
])
224 p2
[align2
+ pos
] = toupper (p1
[align1
+ pos
]
225 + 3 + (random () & 127));
228 if (p1
[align1
+ pos
] < tolower (p2
[align2
+ pos
]))
233 p1
[len1
+ align1
] = 0;
234 p2
[len2
+ align2
] = 0;
236 FOR_EACH_IMPL (impl
, 1)
238 r
= CALL (impl
, (char *) (p1
+ align1
), (char *) (p2
+ align2
),
239 pos
+ 1 + (random () & 255));
240 /* Test whether on 64-bit architectures where ABI requires
241 callee to promote has the promotion been done. */
242 asm ("" : "=g" (r
) : "0" (r
));
243 if ((r
== 0 && result
)
244 || (r
< 0 && result
>= 0)
245 || (r
> 0 && result
<= 0))
247 error (0, 0, "Iteration %zd - wrong result in function %s (%zd, %zd, %zd, %zd, %zd) %ld != %d, p1 %p p2 %p",
248 n
, impl
->name
, align1
, align2
, len1
, len2
, pos
, r
, result
, p1
, p2
);
255 /* Regression test for BZ #12205 */
259 static char cp
[4096+16] __attribute__ ((aligned(4096)));
260 static char gotrel
[4096] __attribute__ ((aligned(4096)));
261 char *s1
= cp
+ 0xffa;
262 char *s2
= gotrel
+ 0xcbe;
266 strcpy (s1
, "gottpoff");
267 strcpy (s2
, "GOTPLT");
269 exp_result
= simple_strncasecmp (s1
, s2
, n
);
270 FOR_EACH_IMPL (impl
, 0)
271 check_result (impl
, s1
, s2
, n
, exp_result
);
274 /* Regression test for BZ #14195 */
278 const char *empty_string
= "";
279 FOR_EACH_IMPL (impl
, 0)
280 check_result (impl
, empty_string
, "", 5, 0);
294 FOR_EACH_IMPL (impl
, 0)
295 printf ("\t%s", impl
->name
);
298 for (i
= 1; i
< 16; ++i
)
300 do_test (i
, i
, i
- 1, i
, 127, 0);
302 do_test (i
, i
, i
, i
, 127, 0);
303 do_test (i
, i
, i
, i
, 127, 1);
304 do_test (i
, i
, i
, i
, 127, -1);
306 do_test (i
, i
, i
+ 1, i
, 127, 0);
307 do_test (i
, i
, i
+ 1, i
, 127, 1);
308 do_test (i
, i
, i
+ 1, i
, 127, -1);
311 for (i
= 1; i
< 10; ++i
)
313 do_test (0, 0, (2 << i
) - 1, 2 << i
, 127, 0);
314 do_test (0, 0, 2 << i
, 2 << i
, 254, 0);
315 do_test (0, 0, (2 << i
) + 1, 2 << i
, 127, 0);
317 do_test (0, 0, (2 << i
) + 1, 2 << i
, 254, 0);
319 do_test (0, 0, 2 << i
, 2 << i
, 127, 1);
320 do_test (0, 0, (2 << i
) + 10, 2 << i
, 127, 1);
322 do_test (0, 0, 2 << i
, 2 << i
, 254, 1);
323 do_test (0, 0, (2 << i
) + 10, 2 << i
, 254, 1);
325 do_test (0, 0, 2 << i
, 2 << i
, 127, -1);
326 do_test (0, 0, (2 << i
) + 10, 2 << i
, 127, -1);
328 do_test (0, 0, 2 << i
, 2 << i
, 254, -1);
329 do_test (0, 0, (2 << i
) + 10, 2 << i
, 254, -1);
332 for (i
= 1; i
< 8; ++i
)
334 do_test (i
, 2 * i
, (8 << i
) - 1, 8 << i
, 127, 0);
335 do_test (i
, 2 * i
, 8 << i
, 8 << i
, 127, 0);
336 do_test (i
, 2 * i
, (8 << i
) + 100, 8 << i
, 127, 0);
338 do_test (2 * i
, i
, (8 << i
) - 1, 8 << i
, 254, 0);
339 do_test (2 * i
, i
, 8 << i
, 8 << i
, 254, 0);
340 do_test (2 * i
, i
, (8 << i
) + 100, 8 << i
, 254, 0);
342 do_test (i
, 2 * i
, 8 << i
, 8 << i
, 127, 1);
343 do_test (i
, 2 * i
, (8 << i
) + 100, 8 << i
, 127, 1);
345 do_test (2 * i
, i
, 8 << i
, 8 << i
, 254, 1);
346 do_test (2 * i
, i
, (8 << i
) + 100, 8 << i
, 254, 1);
348 do_test (i
, 2 * i
, 8 << i
, 8 << i
, 127, -1);
349 do_test (i
, 2 * i
, (8 << i
) + 100, 8 << i
, 127, -1);
351 do_test (2 * i
, i
, 8 << i
, 8 << i
, 254, -1);
352 do_test (2 * i
, i
, (8 << i
) + 100, 8 << i
, 254, -1);
359 #include "../test-skeleton.c"