1 /* Test and measure STRLEN functions.
2 Copyright (C) 1999-2023 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 TEST_NAME "strlen"
23 # define TEST_NAME "wcslen"
25 #include "test-string.h"
28 # define STRLEN strlen
30 # define MAX_CHAR CHAR_MAX
33 # define STRLEN wcslen
35 # define MAX_CHAR WCHAR_MAX
38 typedef size_t (*proto_t
) (const CHAR
*);
42 /* Also check the generic implementation. */
45 #define weak_alias(a, b)
46 #undef libc_hidden_builtin_def
47 #define libc_hidden_builtin_def(a)
49 # define STRLEN __strlen_default
50 # include "string/strlen.c"
51 IMPL (__strlen_default
, 1)
53 # define WCSLEN __wcslen_default
54 # include "wcsmbs/wcslen.c"
55 IMPL (__wcslen_default
, 1)
60 do_one_test (impl_t
*impl
, const CHAR
*s
, size_t exp_len
)
62 size_t len
= CALL (impl
, s
);
65 error (0, 0, "Wrong result in function %s %zd %zd", impl
->name
,
73 do_test (size_t align
, size_t len
)
77 align
&= (getpagesize () / sizeof (CHAR
)) - 1;
78 if (align
+ sizeof (CHAR
) * len
>= page_size
)
81 CHAR
*buf
= (CHAR
*) (buf1
);
83 for (i
= 0; i
< len
; ++i
)
84 buf
[align
+ i
] = 1 + 11111 * i
% MAX_CHAR
;
87 FOR_EACH_IMPL (impl
, 0)
88 do_one_test (impl
, (CHAR
*) (buf
+ align
), len
);
92 do_random_tests (void)
94 size_t i
, j
, n
, align
, len
;
95 CHAR
*p
= (CHAR
*) (buf1
+ page_size
- 512 * sizeof (CHAR
));
97 for (n
= 0; n
< ITERATIONS
; n
++)
99 align
= random () & 15;
100 len
= random () & 511;
101 if (len
+ align
> 510)
102 len
= 511 - align
- (random () & 7);
103 j
= len
+ align
+ 64;
107 for (i
= 0; i
< j
; i
++)
109 if (i
== len
+ align
)
113 p
[i
] = random () & 255;
114 if (i
>= align
&& i
< len
+ align
&& !p
[i
])
115 p
[i
] = (random () & 127) + 1;
119 FOR_EACH_IMPL (impl
, 1)
120 if (CALL (impl
, (CHAR
*) (p
+ align
)) != len
)
122 error (0, 0, "Iteration %zd - wrong result in function %s (%zd) %zd != %zd, p %p",
123 n
, impl
->name
, align
, CALL (impl
, (CHAR
*) (p
+ align
)),
138 FOR_EACH_IMPL (impl
, 0)
139 printf ("\t%s", impl
->name
);
142 /* Checking with only 4 * N alignments for wcslen, other alignments are wrong for wchar_t type arrays*/
144 for (i
= 1; i
< 8; ++i
)
146 do_test (sizeof (CHAR
) * i
, i
);
150 for (i
= 2; i
<= 12; ++i
)
153 do_test (sizeof (CHAR
) * 7, 1 << i
);
154 do_test (sizeof (CHAR
) * i
, 1 << i
);
155 do_test (sizeof (CHAR
) * i
, (size_t)((1 << i
) / 1.5));
158 /* Test strings near page boundary */
160 size_t maxlength
= 64 / sizeof (CHAR
) - 1;
161 size_t pagesize
= getpagesize () / sizeof (CHAR
);
163 for (i
= maxlength
; i
> 1; --i
)
165 /* String stays on the same page. */
166 do_test (pagesize
- i
, i
- 1);
167 /* String crosses page boundary. */
168 do_test (pagesize
- i
, maxlength
);
175 #include <support/test-driver.c>