1 /* Test the wcslcpy function.
2 Copyright (C) 2023-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/>. */
19 #include <array_length.h>
22 #include <support/check.h>
33 /* Nothing is written to the destination if its size is 0. */
34 wmemset (s
.buf1
, '@', array_length (s
.buf1
));
35 wmemset (s
.buf2
, '@', array_length (s
.buf2
));
36 TEST_COMPARE (wcslcpy (s
.buf1
, L
"Hello!", 0), 6);
37 TEST_COMPARE_BLOB (&s
, sizeof (s
), L
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", 128);
39 /* No bytes are are modified in the target buffer if the source
40 string is short enough. */
41 wmemset (s
.buf1
, '@', array_length (s
.buf1
));
42 wmemset (s
.buf2
, '@', array_length (s
.buf2
));
43 TEST_COMPARE (wcslcpy (s
.buf1
, L
"Hello!", array_length (s
.buf1
)), 6);
44 TEST_COMPARE_BLOB (&s
, sizeof (s
),
45 L
"Hello!\0@@@@@@@@@@@@@@@@@@@@@@@@@", 128);
47 /* A source string which fits exactly into the destination buffer is
49 wmemset (s
.buf1
, '@', array_length (s
.buf1
));
50 wmemset (s
.buf2
, '@', array_length (s
.buf2
));
51 TEST_COMPARE (wcslcpy (s
.buf1
, L
"Hello, world!!!", array_length (s
.buf1
)),
53 TEST_COMPARE_BLOB (&s
, sizeof (s
),
54 L
"Hello, world!!!\0@@@@@@@@@@@@@@@@@@@@@@@@@", 128);
56 /* A source string one character longer than the destination buffer
57 is truncated by one character. The untruncated source length is
59 wmemset (s
.buf1
, '@', array_length (s
.buf1
));
60 wmemset (s
.buf2
, '@', array_length (s
.buf2
));
61 TEST_COMPARE (wcslcpy (s
.buf1
, L
"Hello, world!!!!", array_length (s
.buf1
)),
63 TEST_COMPARE_BLOB (&s
, sizeof (s
),
64 L
"Hello, world!!!\0@@@@@@@@@@@@@@@@@@@@@@@@@", 128);
66 /* An even longer source string is truncated as well, and the
67 original length is returned. */
68 wmemset (s
.buf1
, '@', array_length (s
.buf1
));
69 wmemset (s
.buf2
, '@', array_length (s
.buf2
));
70 TEST_COMPARE (wcslcpy (s
.buf1
, L
"Hello, world!!!!!!!!",
71 array_length (s
.buf1
)), 20);
72 TEST_COMPARE_BLOB (&s
, sizeof (s
),
73 L
"Hello, world!!!\0@@@@@@@@@@@@@@@@@@@@@@@@@", 128);
78 #include <support/test-driver.c>