1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-09-01 02:34:55 +00:00
Files
gnulib/tests/test-strncat.c
Lasse Collin 67ee70e8e0 tests: Remove redundant #ifs from N3322 tests
* tests/test-bsearch.c (null_bsearch, main): Remove the #if from
null_bsearch because having the same condition in main is enough.
Move the comment explaining the #if from null_bsearch to main.
* tests/test-memccpy.c (null_memccpy, main): Likewise.
* tests/test-memchr.c (null_memchr, main): Likewise.
* tests/test-memcmp.c (null_memcmp, main): Likewise.
* tests/test-memcpy.c (null_memcpy, main): Likewise.
* tests/test-memmove.c (null_memmove, main): Likewise.
* tests/test-memset.c (null_memset, main): Likewise.
* tests/test-memset_explicit.c (null_memset_explicit, main): Likewise.
* tests/test-qsort.c (null_qsort, main): Likewise.
* tests/test-strncat.c (null_strncat, main): Likewise.
* tests/test-strncmp.c (null_strncmp, main): Likewise.
* tests/test-strncpy.c (null_strncpy, main): Likewise.
* tests/test-strndup.c (null_strndup, main): Likewise.
* tests/test-wcsncat.c (null_wcsncat, main): Likewise.
* tests/test-wcsncmp.c (null_wcsncmp, main): Likewise.
* tests/test-wcsncpy.c (null_wcsncpy, main): Likewise.
2026-08-18 19:22:12 +02:00

105 lines
3.6 KiB
C

/* Test of strncat() function.
Copyright (C) 2010-2026 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible <bruno@clisp.org>, 2010. */
#include <config.h>
#include <string.h>
#include "signature.h"
SIGNATURE_CHECK (strncat, char *, (char *, const char *, size_t));
#include <stdcountof.h>
#include <stdlib.h>
#include "zerosize-ptr.h"
#include "macros.h"
/* Test the prototype in <string.h> + compiler. */
static char *
null_strncat (char *s1, char const *s2, size_t n)
{
char *p = strncat (s1, s2, n);
ASSERT (s2 == NULL);
return p;
}
static char *(*volatile volatile_null_strncat) (char *, char const *, size_t)
= null_strncat;
/* Test the library, not the compiler+library. */
static char *
lib_strncat (char *s1, char const *s2, size_t n)
{
return strncat (s1, s2, n);
}
static char *(*volatile volatile_lib_strncat) (char *, char const *, size_t)
= lib_strncat;
#undef strncat
#define strncat volatile_lib_strncat
#define UNIT char
#define U_STRNCAT strncat
#define MAGIC ((char) 0xBA)
#include "unistr/test-strncat.h"
int
main ()
{
/* Simple string. */
{ /* "Grüß Gott. Здравствуйте! x=(-b±sqrt(b²-4ac))/(2a) 日本語,中文,한글"
in UTF-8 encoding. */
static const char input[] =
{ 'G', 'r', (char) 0xC3, (char) 0xBC, (char) 0xC3, (char) 0x9F, ' ',
'G', 'o', 't', 't', '.', ' ', (char) 0xD0, (char) 0x97, (char) 0xD0,
(char) 0xB4, (char) 0xD1, (char) 0x80, (char) 0xD0, (char) 0xB0,
(char) 0xD0, (char) 0xB2, (char) 0xD1, (char) 0x81, (char) 0xD1,
(char) 0x82, (char) 0xD0, (char) 0xB2, (char) 0xD1, (char) 0x83,
(char) 0xD0, (char) 0xB9, (char) 0xD1, (char) 0x82, (char) 0xD0,
(char) 0xB5, '!', ' ', 'x', '=', '(', '-', 'b', (char) 0xC2,
(char) 0xB1, 's', 'q', 'r', 't', '(', 'b', (char) 0xC2, (char) 0xB2,
'-', '4', 'a', 'c', ')', ')', '/', '(', '2', 'a', ')', ' ', ' ',
(char) 0xE6, (char) 0x97, (char) 0xA5, (char) 0xE6, (char) 0x9C,
(char) 0xAC, (char) 0xE8, (char) 0xAA, (char) 0x9E, ',', (char) 0xE4,
(char) 0xB8, (char) 0xAD, (char) 0xE6, (char) 0x96, (char) 0x87, ',',
(char) 0xED, (char) 0x95, (char) 0x9C, (char) 0xEA, (char) 0xB8,
(char) 0x80, '\0'
};
check (input, countof (input));
}
/* Test zero-length operations on NULL pointers, allowed by
<https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3322.pdf>.
In GCC < 15 this is a builtin that has the nonnull attribute.
Some glibc versions use the nonnull attribute, which breaks this test. */
#if (! defined __GNUC__ || __GNUC__ >= 15 || defined __clang__) \
&& (! defined __GLIBC__ || 2 < __GLIBC__ + (99 <= __GLIBC_MINOR__))
# if 0 /* I think this is invalid, per ISO C 23 § 7.26.3.2. */
ASSERT (strncat (NULL, "x", 0) == NULL);
# endif
{
char y[2] = { 'x', '\0' };
ASSERT (strncat (y, NULL, 0) == y);
ASSERT (volatile_null_strncat (y, NULL, 0) == y);
}
#endif
return test_exit_status;
}