public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Adhemerval Zanella <azanella@sourceware.org>
To: glibc-cvs@sourceware.org
Subject: [glibc/azanella/clang] stdio: Fix clang warnings on tests
Date: Tue, 2 Apr 2024 15:59:52 +0000 (GMT) [thread overview]
Message-ID: <20240402155952.322553858CDA@sourceware.org> (raw)
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c449401e8fa1a44003a051dfc9b15f1ca93eccbb
commit c449401e8fa1a44003a051dfc9b15f1ca93eccbb
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Jul 27 15:27:08 2023 -0300
stdio: Fix clang warnings on tests
clang does not support 'I' specifier and handles it as a 'length
modifier'.
Diff:
---
stdio-common/tst-scanf-to_inpunct.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/stdio-common/tst-scanf-to_inpunct.c b/stdio-common/tst-scanf-to_inpunct.c
index 6fc038f476..fab1a232b9 100644
--- a/stdio-common/tst-scanf-to_inpunct.c
+++ b/stdio-common/tst-scanf-to_inpunct.c
@@ -18,6 +18,7 @@
<https://www.gnu.org/licenses/>. */
#include <array_length.h>
+#include <libc-diag.h>
#include <stdio.h>
#include <support/support.h>
#include <support/check.h>
@@ -68,7 +69,11 @@ do_test (void)
for (int i = 0; i < array_length (inputs); i++)
{
int n;
+ /* clang does not support 'I' specifier. */
+ DIAG_PUSH_NEEDS_COMMENT_CLANG;
+ DIAG_IGNORE_NEEDS_COMMENT_CLANG (13, "-Wformat");
sscanf (inputs[i].str, "%Id", &n);
+ DIAG_POP_NEEDS_COMMENT_CLANG;
TEST_COMPARE (n, inputs[i].n);
}
next reply other threads:[~2024-04-02 15:59 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-02 15:59 Adhemerval Zanella [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-17 20:13 Adhemerval Zanella
2024-02-09 17:38 Adhemerval Zanella
2024-02-07 14:13 Adhemerval Zanella
2024-01-29 18:03 Adhemerval Zanella
2023-12-21 19:00 Adhemerval Zanella
2023-09-28 17:58 Adhemerval Zanella
2023-08-30 12:42 Adhemerval Zanella
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240402155952.322553858CDA@sourceware.org \
--to=azanella@sourceware.org \
--cc=glibc-cvs@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).