2011-10-23 18:11:50 +00:00
|
|
|
/* Test and measure STRLEN functions.
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 1999-2024 Free Software Foundation, Inc.
|
2002-11-07 19:15:01 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2002-11-07 19:15:01 +00:00
|
|
|
|
|
|
|
#define TEST_MAIN
|
2012-10-20 05:04:19 +00:00
|
|
|
#ifndef WIDE
|
|
|
|
# define TEST_NAME "strlen"
|
|
|
|
#else
|
|
|
|
# define TEST_NAME "wcslen"
|
|
|
|
#endif
|
2002-11-07 19:15:01 +00:00
|
|
|
#include "test-string.h"
|
|
|
|
|
2011-10-23 18:11:50 +00:00
|
|
|
#ifndef WIDE
|
|
|
|
# define STRLEN strlen
|
|
|
|
# define CHAR char
|
|
|
|
# define MAX_CHAR CHAR_MAX
|
|
|
|
#else
|
|
|
|
# include <wchar.h>
|
|
|
|
# define STRLEN wcslen
|
|
|
|
# define CHAR wchar_t
|
|
|
|
# define MAX_CHAR WCHAR_MAX
|
|
|
|
#endif
|
2002-11-07 19:15:01 +00:00
|
|
|
|
2011-10-23 18:11:50 +00:00
|
|
|
typedef size_t (*proto_t) (const CHAR *);
|
2002-11-07 19:15:01 +00:00
|
|
|
|
2023-01-17 13:10:21 +00:00
|
|
|
IMPL (STRLEN, 1)
|
2002-11-07 19:15:01 +00:00
|
|
|
|
2023-01-17 13:10:21 +00:00
|
|
|
/* Also check the generic implementation. */
|
|
|
|
#undef STRLEN
|
|
|
|
#undef weak_alias
|
|
|
|
#define weak_alias(a, b)
|
|
|
|
#undef libc_hidden_builtin_def
|
|
|
|
#define libc_hidden_builtin_def(a)
|
2011-10-23 18:11:50 +00:00
|
|
|
#ifndef WIDE
|
2023-01-17 13:10:21 +00:00
|
|
|
# define STRLEN __strlen_default
|
|
|
|
# include "string/strlen.c"
|
|
|
|
IMPL (__strlen_default, 1)
|
|
|
|
#else
|
|
|
|
# define WCSLEN __wcslen_default
|
|
|
|
# include "wcsmbs/wcslen.c"
|
|
|
|
IMPL (__wcslen_default, 1)
|
2011-10-23 18:11:50 +00:00
|
|
|
#endif
|
|
|
|
|
2002-11-07 19:15:01 +00:00
|
|
|
|
|
|
|
static void
|
2011-10-23 18:11:50 +00:00
|
|
|
do_one_test (impl_t *impl, const CHAR *s, size_t exp_len)
|
2002-11-07 19:15:01 +00:00
|
|
|
{
|
|
|
|
size_t len = CALL (impl, s);
|
|
|
|
if (len != exp_len)
|
|
|
|
{
|
|
|
|
error (0, 0, "Wrong result in function %s %zd %zd", impl->name,
|
|
|
|
len, exp_len);
|
|
|
|
ret = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-10-23 18:11:50 +00:00
|
|
|
do_test (size_t align, size_t len)
|
2002-11-07 19:15:01 +00:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
2021-05-31 18:08:12 +00:00
|
|
|
align &= (getpagesize () / sizeof (CHAR)) - 1;
|
2019-02-27 13:55:45 +00:00
|
|
|
if (align + sizeof (CHAR) * len >= page_size)
|
2002-11-07 19:15:01 +00:00
|
|
|
return;
|
2003-04-17 17:38:38 +00:00
|
|
|
|
2011-10-23 18:11:50 +00:00
|
|
|
CHAR *buf = (CHAR *) (buf1);
|
|
|
|
|
2002-11-07 19:15:01 +00:00
|
|
|
for (i = 0; i < len; ++i)
|
2011-10-23 18:11:50 +00:00
|
|
|
buf[align + i] = 1 + 11111 * i % MAX_CHAR;
|
|
|
|
buf[align + len] = 0;
|
2002-11-07 19:15:01 +00:00
|
|
|
|
|
|
|
FOR_EACH_IMPL (impl, 0)
|
2011-10-23 18:11:50 +00:00
|
|
|
do_one_test (impl, (CHAR *) (buf + align), len);
|
2002-11-07 19:15:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_random_tests (void)
|
|
|
|
{
|
|
|
|
size_t i, j, n, align, len;
|
2019-02-27 13:55:45 +00:00
|
|
|
CHAR *p = (CHAR *) (buf1 + page_size - 512 * sizeof (CHAR));
|
2002-11-07 19:15:01 +00:00
|
|
|
|
|
|
|
for (n = 0; n < ITERATIONS; n++)
|
|
|
|
{
|
|
|
|
align = random () & 15;
|
|
|
|
len = random () & 511;
|
|
|
|
if (len + align > 510)
|
|
|
|
len = 511 - align - (random () & 7);
|
|
|
|
j = len + align + 64;
|
|
|
|
if (j > 512)
|
|
|
|
j = 512;
|
|
|
|
|
|
|
|
for (i = 0; i < j; i++)
|
|
|
|
{
|
|
|
|
if (i == len + align)
|
|
|
|
p[i] = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p[i] = random () & 255;
|
|
|
|
if (i >= align && i < len + align && !p[i])
|
|
|
|
p[i] = (random () & 127) + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FOR_EACH_IMPL (impl, 1)
|
2011-10-23 18:11:50 +00:00
|
|
|
if (CALL (impl, (CHAR *) (p + align)) != len)
|
2002-11-07 19:15:01 +00:00
|
|
|
{
|
|
|
|
error (0, 0, "Iteration %zd - wrong result in function %s (%zd) %zd != %zd, p %p",
|
2011-10-23 18:11:50 +00:00
|
|
|
n, impl->name, align, CALL (impl, (CHAR *) (p + align)),
|
* posix/tst-execle1.c (do_test): Add a const.
* posix/tst-execle2.c (do_test): Likewise.
* posix/transbug.c (run_test): Add some casts.
* posix/bug-regex22.c (main): Likewise.
* posix/bug-regex5.c (main): Likewise.
* wcsmbs/tst-mbsrtowcs.c (main): Likewise.
* string/test-strspn.c (do_test, do_random_tests): Likewise.
* string/test-strrchr.c (do_test, do_random_tests): Likewise.
* string/test-strlen.c (do_random_tests): Likewise.
* string/test-strpbrk.c (do_test, do_random_tests): Likewise.
* string/test-strcmp.c (do_random_tests): Likewise.
* string/test-strchr.c (do_test, do_random_tests): Likewise.
* string/test-strcat.c (do_test, do_random_tests): Likewise.
* string/test-strncpy.c (do_random_tests): Likewise.
* string/test-strcpy.c (do_test, do_random_tests): Likewise.
* string/test-memccpy.c (do_test): Likewise.
* string/test-memmove.c (do_test, do_random_tests): Likewise.
* string/test-memcpy.c (do_test, do_random_tests): Likewise.
* string/test-memcmp.c (do_test, do_random_tests): Likewise.
* string/test-memchr.c (do_test, do_random_tests): Likewise.
* dlfcn/bug-atexit1.c (do_test): Fix up prototype in cast.
* stdio-common/tst-fgets.c (do_test): Add a cast.
* iconvdata/bug-iconv4.c (xiconv): Add a cast.
* locale/programs/simple-hash.c (insert_entry_2): Remove useless casts.
* resolv/herror.c (herror): Remove unused extern decl.
* libio/obprintf.c: Include "strfile.h".
* elf/order2mod2.c (init): Cast ignored value to void.
* stdio-common/tstdiomisc.c: If FLT_EVAL_METHOD is 2, use long
2005-12-27 22:50:12 +00:00
|
|
|
len, p);
|
2002-11-07 19:15:01 +00:00
|
|
|
ret = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
test_main (void)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
test_init ();
|
|
|
|
|
|
|
|
printf ("%20s", "");
|
|
|
|
FOR_EACH_IMPL (impl, 0)
|
|
|
|
printf ("\t%s", impl->name);
|
|
|
|
putchar ('\n');
|
|
|
|
|
2011-10-23 18:11:50 +00:00
|
|
|
/* Checking with only 4 * N alignments for wcslen, other alignments are wrong for wchar_t type arrays*/
|
2002-11-07 19:15:01 +00:00
|
|
|
|
|
|
|
for (i = 1; i < 8; ++i)
|
2011-10-23 18:11:50 +00:00
|
|
|
{
|
2019-02-27 13:55:45 +00:00
|
|
|
do_test (sizeof (CHAR) * i, i);
|
2011-10-23 18:11:50 +00:00
|
|
|
do_test (0, i);
|
|
|
|
}
|
2002-11-07 19:15:01 +00:00
|
|
|
|
2011-10-23 18:11:50 +00:00
|
|
|
for (i = 2; i <= 12; ++i)
|
2002-11-07 19:15:01 +00:00
|
|
|
{
|
2011-10-23 18:11:50 +00:00
|
|
|
do_test (0, 1 << i);
|
2019-02-27 13:55:45 +00:00
|
|
|
do_test (sizeof (CHAR) * 7, 1 << i);
|
|
|
|
do_test (sizeof (CHAR) * i, 1 << i);
|
|
|
|
do_test (sizeof (CHAR) * i, (size_t)((1 << i) / 1.5));
|
2002-11-07 19:15:01 +00:00
|
|
|
}
|
|
|
|
|
2021-05-31 18:08:12 +00:00
|
|
|
/* Test strings near page boundary */
|
|
|
|
|
|
|
|
size_t maxlength = 64 / sizeof (CHAR) - 1;
|
|
|
|
size_t pagesize = getpagesize () / sizeof (CHAR);
|
|
|
|
|
|
|
|
for (i = maxlength ; i > 1; --i)
|
|
|
|
{
|
|
|
|
/* String stays on the same page. */
|
|
|
|
do_test (pagesize - i, i - 1);
|
|
|
|
/* String crosses page boundary. */
|
|
|
|
do_test (pagesize - i, maxlength);
|
|
|
|
}
|
|
|
|
|
2002-11-07 19:15:01 +00:00
|
|
|
do_random_tests ();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-03-23 14:32:17 +00:00
|
|
|
#include <support/test-driver.c>
|