1 /* Tests of *printf for very large strings.
2 Copyright (C) 2000-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@redhat.com>, 2000.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 #include <array_length.h>
29 #include <libc-diag.h>
34 "C", "de_DE.ISO-8859-1", "de_DE.UTF-8", "ja_JP.EUC-JP"
49 strcpy (buf
, "/tmp/test-vfprintfXXXXXX");
53 printf ("cannot open temporary file: %m\n");
58 for (i
= 0; i
< array_length (locs
); ++i
)
64 setlocale (LC_ALL
, locs
[i
]);
66 memset (large
, '\1', sizeof (large
));
67 large
[sizeof (large
) - 1] = '\0';
72 printf ("cannot dup for locale %s: %m\n",
73 setlocale (LC_ALL
, NULL
));
77 if (ftruncate (fd2
, 0) != 0)
79 printf ("cannot truncate file for locale %s: %m\n",
80 setlocale (LC_ALL
, NULL
));
84 fp
= fdopen (fd2
, "a");
87 printf ("cannot create FILE for locale %s: %m\n",
88 setlocale (LC_ALL
, NULL
));
92 fprintf (fp
, "%s", large
);
93 fprintf (fp
, "%.*s", 30000, large
);
95 /* We're testing a large format string here and need to generate it
96 to avoid this source file being ridiculous. So disable the warning
97 about a generated format string. */
98 DIAG_PUSH_NEEDS_COMMENT
;
99 DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wformat-security");
101 DIAG_POP_NEEDS_COMMENT
;
102 fprintf (fp
, "%-1.300000000s", "hello");
104 if (fflush (fp
) != 0 || ferror (fp
) != 0 || fclose (fp
) != 0)
106 printf ("write error for locale %s: %m\n",
107 setlocale (LC_ALL
, NULL
));
111 if (fstat (fd
, &st
) != 0)
113 printf ("cannot stat for locale %s: %m\n",
114 setlocale (LC_ALL
, NULL
));
117 else if (st
.st_size
!= 50000 + 30000 + 19999 + 5)
119 printf ("file size incorrect for locale %s: %jd instead of %jd\n",
120 setlocale (LC_ALL
, NULL
),
121 (intmax_t) st
.st_size
,
122 (intmax_t) 50000 + 30000 + 19999 + 5);
126 printf ("locale %s OK\n", setlocale (LC_ALL
, NULL
));
134 #define TEST_FUNCTION do_test ()
135 #include "../test-skeleton.c"