mirror of git://sourceware.org/git/glibc.git
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:
parent
03962d17c9
commit
f6cf084155
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue