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>
This commit is contained in:
Adhemerval Zanella 2023-07-27 15:27:08 -03:00 committed by H.J. Lu
parent 03962d17c9
commit f6cf084155
1 changed files with 5 additions and 0 deletions

View File

@ -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);
}