1 /* Test and measure strpbrk functions.
2 Copyright (C) 1999-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
21 # define UCHAR unsigned char
22 # define STRLEN strlen
23 # define STRCHR strchr
24 # define BIG_CHAR CHAR_MAX
25 # define SMALL_CHAR 127
29 # define UCHAR wchar_t
30 # define STRLEN wcslen
31 # define STRCHR wcschr
32 # define BIG_CHAR WCHAR_MAX
33 # define SMALL_CHAR 1273
36 #ifndef STRPBRK_RESULT
37 # define STRPBRK_RESULT(s, pos) ((s)[(pos)] ? (s) + (pos) : NULL)
38 # define RES_TYPE CHAR *
41 # define TEST_NAME "strpbrk"
43 # define TEST_NAME "wcspbrk"
45 # include "test-string.h"
48 # define STRPBRK strpbrk
49 # define SIMPLE_STRPBRK simple_strpbrk
52 # define STRPBRK wcspbrk
53 # define SIMPLE_STRPBRK simple_wcspbrk
56 typedef CHAR
*(*proto_t
) (const CHAR
*, const CHAR
*);
60 /* Naive implementation to verify results. */
62 SIMPLE_STRPBRK (const CHAR
*s
, const CHAR
*rej
)
67 while ((c
= *s
++) != '\0')
68 for (r
= rej
; *r
!= '\0'; ++r
)
70 return (CHAR
*) s
- 1;
74 #endif /* !STRPBRK_RESULT */
77 do_one_test (impl_t
*impl
, const CHAR
*s
, const CHAR
*rej
, RES_TYPE exp_res
)
79 RES_TYPE res
= CALL (impl
, s
, rej
);
82 error (0, 0, "Wrong result in function %s %p %p", impl
->name
,
83 (void *) res
, (void *) exp_res
);
90 do_test (size_t align
, size_t pos
, size_t len
)
98 if ((align
+ pos
+ 10) * sizeof (CHAR
) >= page_size
|| len
> 240)
101 rej
= (CHAR
*) (buf2
) + (random () & 255);
102 s
= (CHAR
*) (buf1
) + align
;
104 for (i
= 0; i
< len
; ++i
)
106 rej
[i
] = random () & BIG_CHAR
;
108 rej
[i
] = random () & BIG_CHAR
;
110 rej
[i
] = 1 + (random () & SMALL_CHAR
);
113 for (c
= 1; c
<= BIG_CHAR
; ++c
)
114 if (STRCHR (rej
, c
) == NULL
)
117 for (i
= 0; i
< pos
; ++i
)
119 s
[i
] = random () & BIG_CHAR
;
120 if (STRCHR (rej
, s
[i
]))
122 s
[i
] = random () & BIG_CHAR
;
123 if (STRCHR (rej
, s
[i
]))
127 s
[pos
] = rej
[random () % (len
+ 1)];
130 for (i
= pos
+ 1; i
< pos
+ 10; ++i
)
131 s
[i
] = random () & BIG_CHAR
;
134 result
= STRPBRK_RESULT (s
, pos
);
136 FOR_EACH_IMPL (impl
, 0)
137 do_one_test (impl
, s
, rej
, result
);
141 do_random_tests (void)
143 size_t i
, j
, n
, align
, pos
, len
, rlen
;
146 UCHAR
*p
= (UCHAR
*) (buf1
+ page_size
) - 512;
149 for (n
= 0; n
< ITERATIONS
; n
++)
151 align
= random () & 15;
152 pos
= random () & 511;
153 if (pos
+ align
>= 511)
154 pos
= 510 - align
- (random () & 7);
155 len
= random () & 511;
156 if (pos
>= len
&& (random () & 1))
157 len
= pos
+ 1 + (random () & 7);
158 if (len
+ align
>= 512)
159 len
= 511 - align
- (random () & 7);
161 rlen
= random () & 63;
163 rlen
= random () & 15;
164 rej
= (UCHAR
*) (buf2
+ page_size
) - rlen
- 1 - (random () & 7);
165 for (i
= 0; i
< rlen
; ++i
)
167 rej
[i
] = random () & BIG_CHAR
;
169 rej
[i
] = random () & BIG_CHAR
;
171 rej
[i
] = 1 + (random () & SMALL_CHAR
);
174 for (c
= 1; c
<= BIG_CHAR
; ++c
)
175 if (STRCHR ((CHAR
*) rej
, c
) == NULL
)
177 j
= (pos
> len
? pos
: len
) + align
+ 64;
181 for (i
= 0; i
< j
; i
++)
183 if (i
== len
+ align
)
185 else if (i
== pos
+ align
)
186 p
[i
] = rej
[random () % (rlen
+ 1)];
187 else if (i
< align
|| i
> pos
+ align
)
188 p
[i
] = random () & BIG_CHAR
;
191 p
[i
] = random () & BIG_CHAR
;
192 if (STRCHR ((CHAR
*) rej
, p
[i
]))
194 p
[i
] = random () & BIG_CHAR
;
195 if (STRCHR ((CHAR
*) rej
, p
[i
]))
201 result
= STRPBRK_RESULT ((CHAR
*) (p
+ align
), pos
< len
? pos
: len
);
203 FOR_EACH_IMPL (impl
, 1)
204 if (CALL (impl
, (CHAR
*) (p
+ align
), (CHAR
*) rej
) != result
)
206 error (0, 0, "Iteration %zd - wrong result in function %s (%zd, %p, %zd, %zd, %zd) %p != %p",
207 n
, impl
->name
, align
, rej
, rlen
, pos
, len
,
208 (void *) CALL (impl
, (CHAR
*) (p
+ align
), (CHAR
*) rej
),
223 FOR_EACH_IMPL (impl
, 0)
224 printf ("\t%s", impl
->name
);
227 for (i
= 0; i
< 32; ++i
)
233 for (i
= 1; i
< 8; ++i
)
235 do_test (0, 16 << i
, 4);
236 do_test (i
, 16 << i
, 4);
239 for (i
= 1; i
< 8; ++i
)
242 for (i
= 0; i
< 64; ++i
)
249 #include <support/test-driver.c>