Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Dec 2023 14:02:40 GMT
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 0907c0ddbaf2 - stable/13 - Silence snprintf truncation warnings in printf_test examples
Message-ID:  <202312241402.3BOE2eBm057367@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by dim:

URL: https://cgit.FreeBSD.org/src/commit/?id=0907c0ddbaf22cc6d5d0e6692885f911e3b4e85f

commit 0907c0ddbaf22cc6d5d0e6692885f911e3b4e85f
Author:     Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2023-12-21 22:39:15 +0000
Commit:     Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2023-12-24 14:01:19 +0000

    Silence snprintf truncation warnings in printf_test examples
    
    Building share/examples/tests with clang 18 results in a few warnings
    like:
    
      share/examples/tests/tests/plain/printf_test.c:67:6: error: 'snprintf' will always be truncated; specified size is 10, but format string expands to at least 17 [-Werror,-Wformat-truncation]
         67 |         if (snprintf(buffer, sizeof(buffer), "0123456789abcdef") != 16)
            |             ^
    
    Since these tests are meant as an example of testing snprintf overflow,
    suppress the warnings.
    
    MFC after:      3 days
    
    (cherry picked from commit 69c8025a498450b6bc4cc9e97ba779ed1c2e7f4b)
---
 share/examples/tests/tests/atf/Makefile   | 4 ++++
 share/examples/tests/tests/plain/Makefile | 4 ++++
 share/examples/tests/tests/tap/Makefile   | 4 ++++
 3 files changed, 12 insertions(+)

diff --git a/share/examples/tests/tests/atf/Makefile b/share/examples/tests/tests/atf/Makefile
index 305d66c51f38..7614767b6e0a 100644
--- a/share/examples/tests/tests/atf/Makefile
+++ b/share/examples/tests/tests/atf/Makefile
@@ -46,3 +46,7 @@ file1:
 	@echo "File 1" > ${.TARGET}
 
 .include <bsd.test.mk>
+
+.if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 180000
+CWARNFLAGS.printf_test.c+=	-Wno-format-truncation
+.endif
diff --git a/share/examples/tests/tests/plain/Makefile b/share/examples/tests/tests/plain/Makefile
index 2594968a6f44..462324309f6a 100644
--- a/share/examples/tests/tests/plain/Makefile
+++ b/share/examples/tests/tests/plain/Makefile
@@ -46,3 +46,7 @@ file1:
 	@echo "File 1" > ${.TARGET}
 
 .include <bsd.test.mk>
+
+.if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 180000
+CWARNFLAGS.printf_test.c+=	-Wno-format-truncation
+.endif
diff --git a/share/examples/tests/tests/tap/Makefile b/share/examples/tests/tests/tap/Makefile
index 5b829afd5838..86d3f6805045 100644
--- a/share/examples/tests/tests/tap/Makefile
+++ b/share/examples/tests/tests/tap/Makefile
@@ -46,3 +46,7 @@ file1:
 	@echo "File 1" > ${.TARGET}
 
 .include <bsd.test.mk>
+
+.if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 180000
+CWARNFLAGS.printf_test.c+=	-Wno-format-truncation
+.endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202312241402.3BOE2eBm057367>