* [PATCH] selftests/nolibc: avoid GCC 15 -Wunterminated-string-initialization
@ 2025-06-23 21:34 Thomas Weißschuh
2025-06-23 21:37 ` Willy Tarreau
2025-06-24 11:08 ` Rodrigo Campos
0 siblings, 2 replies; 3+ messages in thread
From: Thomas Weißschuh @ 2025-06-23 21:34 UTC (permalink / raw)
To: Willy Tarreau, Shuah Khan, Rodrigo Campos
Cc: linux-kselftest, linux-kernel, Thomas Weißschuh
On GCC 15 the following warnings is emitted:
nolibc-test.c: In function ‘run_stdlib’:
nolibc-test.c:1416:32: warning: initializer-string for array of ‘char’ truncates NUL terminator but destination lacks ‘nonstring’ attribute (11 chars into 10 available) [-Wunterminated-string-initialization]
1416 | char buf[10] = "test123456";
| ^~~~~~~~~~~~
Increase the size of buf to avoid the warning.
It would also be possible to use __attribute__((nonstring)) but that
would require some ifdeffery to work with older compilers.
Fixes: 1063649cf531 ("selftests/nolibc: Add tests for strlcat() and strlcpy()")
Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
---
tools/testing/selftests/nolibc/nolibc-test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testing/selftests/nolibc/nolibc-test.c b/tools/testing/selftests/nolibc/nolibc-test.c
index dbe13000fb1ac153e9a89f627492daeb584a05d4..52640d8ae402b9e34174ae798e74882ca750ec2b 100644
--- a/tools/testing/selftests/nolibc/nolibc-test.c
+++ b/tools/testing/selftests/nolibc/nolibc-test.c
@@ -1413,7 +1413,7 @@ int run_stdlib(int min, int max)
* Add some more chars after the \0, to test functions that overwrite the buffer set
* the \0 at the exact right position.
*/
- char buf[10] = "test123456";
+ char buf[11] = "test123456";
buf[4] = '\0';
---
base-commit: eb135311083100b6590a7545618cd9760d896a86
change-id: 20250623-nolibc-nonstring-7fe6974552b5
Best regards,
--
Thomas Weißschuh <linux@weissschuh.net>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] selftests/nolibc: avoid GCC 15 -Wunterminated-string-initialization
2025-06-23 21:34 [PATCH] selftests/nolibc: avoid GCC 15 -Wunterminated-string-initialization Thomas Weißschuh
@ 2025-06-23 21:37 ` Willy Tarreau
2025-06-24 11:08 ` Rodrigo Campos
1 sibling, 0 replies; 3+ messages in thread
From: Willy Tarreau @ 2025-06-23 21:37 UTC (permalink / raw)
To: Thomas Weißschuh
Cc: Shuah Khan, Rodrigo Campos, linux-kselftest, linux-kernel
On Mon, Jun 23, 2025 at 11:34:32PM +0200, Thomas Weißschuh wrote:
> On GCC 15 the following warnings is emitted:
>
> nolibc-test.c: In function 'run_stdlib':
> nolibc-test.c:1416:32: warning: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (11 chars into 10 available) [-Wunterminated-string-initialization]
> 1416 | char buf[10] = "test123456";
> | ^~~~~~~~~~~~
>
> Increase the size of buf to avoid the warning.
>
> It would also be possible to use __attribute__((nonstring)) but that
> would require some ifdeffery to work with older compilers.
I agree with you, that's not an important enough fight to spend time
on :-)
> Fixes: 1063649cf531 ("selftests/nolibc: Add tests for strlcat() and strlcpy()")
> Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Acked-by: Willy Tarreau <w@1wt.eu>
willy
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] selftests/nolibc: avoid GCC 15 -Wunterminated-string-initialization
2025-06-23 21:34 [PATCH] selftests/nolibc: avoid GCC 15 -Wunterminated-string-initialization Thomas Weißschuh
2025-06-23 21:37 ` Willy Tarreau
@ 2025-06-24 11:08 ` Rodrigo Campos
1 sibling, 0 replies; 3+ messages in thread
From: Rodrigo Campos @ 2025-06-24 11:08 UTC (permalink / raw)
To: Thomas Weißschuh, Willy Tarreau, Shuah Khan
Cc: linux-kselftest, linux-kernel
On 6/23/25 11:34 PM, Thomas Weißschuh wrote:
> On GCC 15 the following warnings is emitted:
>
> nolibc-test.c: In function ‘run_stdlib’:
> nolibc-test.c:1416:32: warning: initializer-string for array of ‘char’ truncates NUL terminator but destination lacks ‘nonstring’ attribute (11 chars into 10 available) [-Wunterminated-string-initialization]
> 1416 | char buf[10] = "test123456";
> | ^~~~~~~~~~~~
>
> Increase the size of buf to avoid the warning.
>
> It would also be possible to use __attribute__((nonstring)) but that
> would require some ifdeffery to work with older compilers.
>
> Fixes: 1063649cf531 ("selftests/nolibc: Add tests for strlcat() and strlcpy()")
> Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
> ---
> tools/testing/selftests/nolibc/nolibc-test.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/testing/selftests/nolibc/nolibc-test.c b/tools/testing/selftests/nolibc/nolibc-test.c
> index dbe13000fb1ac153e9a89f627492daeb584a05d4..52640d8ae402b9e34174ae798e74882ca750ec2b 100644
> --- a/tools/testing/selftests/nolibc/nolibc-test.c
> +++ b/tools/testing/selftests/nolibc/nolibc-test.c
> @@ -1413,7 +1413,7 @@ int run_stdlib(int min, int max)
> * Add some more chars after the \0, to test functions that overwrite the buffer set
> * the \0 at the exact right position.
> */
> - char buf[10] = "test123456";
> + char buf[11] = "test123456";
> buf[4] = '\0';
Reviewed-by: Rodrigo Campos <rodrigo@sdfg.com.ar>
Sorry for the typo :)
Best,
Rodrigo
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-06-24 11:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-06-23 21:34 [PATCH] selftests/nolibc: avoid GCC 15 -Wunterminated-string-initialization Thomas Weißschuh
2025-06-23 21:37 ` Willy Tarreau
2025-06-24 11:08 ` Rodrigo Campos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®