Update translations.
[glibc.git] / string / test-strlen.c
blobdd394dadc5b3dd018ccb85a5c8cb2cd73c1c1b2e
1 /* Test and measure STRLEN functions.
2 Copyright (C) 1999-2022 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/>. */
19 #define TEST_MAIN
20 #ifndef WIDE
21 # define TEST_NAME "strlen"
22 #else
23 # define TEST_NAME "wcslen"
24 #endif
25 #include "test-string.h"
27 #ifndef WIDE
28 # define STRLEN strlen
29 # define CHAR char
30 # define MAX_CHAR CHAR_MAX
31 #else
32 # include <wchar.h>
33 # define STRLEN wcslen
34 # define CHAR wchar_t
35 # define MAX_CHAR WCHAR_MAX
36 #endif
38 typedef size_t (*proto_t) (const CHAR *);
40 size_t
41 simple_STRLEN (const CHAR *s)
43 const CHAR *p;
45 for (p = s; *p; ++p);
46 return p - s;
49 #ifndef WIDE
50 size_t
51 builtin_strlen (const CHAR *p)
53 return __builtin_strlen (p);
55 IMPL (builtin_strlen, 0)
56 #endif
58 IMPL (simple_STRLEN, 0)
59 IMPL (STRLEN, 1)
62 static void
63 do_one_test (impl_t *impl, const CHAR *s, size_t exp_len)
65 size_t len = CALL (impl, s);
66 if (len != exp_len)
68 error (0, 0, "Wrong result in function %s %zd %zd", impl->name,
69 len, exp_len);
70 ret = 1;
71 return;
75 static void
76 do_test (size_t align, size_t len)
78 size_t i;
80 align &= (getpagesize () / sizeof (CHAR)) - 1;
81 if (align + sizeof (CHAR) * len >= page_size)
82 return;
84 CHAR *buf = (CHAR *) (buf1);
86 for (i = 0; i < len; ++i)
87 buf[align + i] = 1 + 11111 * i % MAX_CHAR;
88 buf[align + len] = 0;
90 FOR_EACH_IMPL (impl, 0)
91 do_one_test (impl, (CHAR *) (buf + align), len);
94 static void
95 do_random_tests (void)
97 size_t i, j, n, align, len;
98 CHAR *p = (CHAR *) (buf1 + page_size - 512 * sizeof (CHAR));
100 for (n = 0; n < ITERATIONS; n++)
102 align = random () & 15;
103 len = random () & 511;
104 if (len + align > 510)
105 len = 511 - align - (random () & 7);
106 j = len + align + 64;
107 if (j > 512)
108 j = 512;
110 for (i = 0; i < j; i++)
112 if (i == len + align)
113 p[i] = 0;
114 else
116 p[i] = random () & 255;
117 if (i >= align && i < len + align && !p[i])
118 p[i] = (random () & 127) + 1;
122 FOR_EACH_IMPL (impl, 1)
123 if (CALL (impl, (CHAR *) (p + align)) != len)
125 error (0, 0, "Iteration %zd - wrong result in function %s (%zd) %zd != %zd, p %p",
126 n, impl->name, align, CALL (impl, (CHAR *) (p + align)),
127 len, p);
128 ret = 1;
134 test_main (void)
136 size_t i;
138 test_init ();
140 printf ("%20s", "");
141 FOR_EACH_IMPL (impl, 0)
142 printf ("\t%s", impl->name);
143 putchar ('\n');
145 /* Checking with only 4 * N alignments for wcslen, other alignments are wrong for wchar_t type arrays*/
147 for (i = 1; i < 8; ++i)
149 do_test (sizeof (CHAR) * i, i);
150 do_test (0, i);
153 for (i = 2; i <= 12; ++i)
155 do_test (0, 1 << i);
156 do_test (sizeof (CHAR) * 7, 1 << i);
157 do_test (sizeof (CHAR) * i, 1 << i);
158 do_test (sizeof (CHAR) * i, (size_t)((1 << i) / 1.5));
161 /* Test strings near page boundary */
163 size_t maxlength = 64 / sizeof (CHAR) - 1;
164 size_t pagesize = getpagesize () / sizeof (CHAR);
166 for (i = maxlength ; i > 1; --i)
168 /* String stays on the same page. */
169 do_test (pagesize - i, i - 1);
170 /* String crosses page boundary. */
171 do_test (pagesize - i, maxlength);
174 do_random_tests ();
175 return ret;
178 #include <support/test-driver.c>