diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-07-27 15:27:08 -0300 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2024-12-22 17:43:11 +0800 |
commit | f6cf084155870578835f6c8e6f1969c8b26d11ac (patch) | |
tree | 05a037f29cfa2a3d513f20b287833ec422659244 | |
parent | 03962d17c946ee6ca2a75bb2ed05b9402de07132 (diff) | |
download | glibc-f6cf084155870578835f6c8e6f1969c8b26d11ac.zip glibc-f6cf084155870578835f6c8e6f1969c8b26d11ac.tar.gz glibc-f6cf084155870578835f6c8e6f1969c8b26d11ac.tar.bz2 |
stdio: Fix clang warnings on tests
clang does not support 'I' specifier and handles it as a 'length
modifier'.
Reviewed-by: Sam James <sam@gentoo.org>
-rw-r--r-- | stdio-common/tst-scanf-to_inpunct.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/stdio-common/tst-scanf-to_inpunct.c b/stdio-common/tst-scanf-to_inpunct.c index 6fc038f..fab1a23 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); } |