(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / stdio-common / test-vfprintf.c
bloba683eac779e66ce6629a236b927e2d800a0b456c
1 /* Tests of *printf for very large strings.
2 Copyright (C) 2000, 2002, 2003 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, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #include <locale.h>
22 #include <mcheck.h>
23 #include <stdint.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <sys/stat.h>
31 const char *locs[] =
33 "C", "de_DE.ISO-8859-1", "de_DE.UTF-8", "ja_JP.EUC-JP"
35 #define nlocs (sizeof (locs) / sizeof (locs[0]))
38 char large[50000];
40 int
41 main (void)
43 char buf[25];
44 size_t i;
45 int res = 0;
46 int fd;
48 mtrace ();
50 strcpy (buf, "/tmp/test-vfprintfXXXXXX");
51 fd = mkstemp (buf);
52 if (fd == -1)
54 printf ("cannot open temporary file: %m\n");
55 exit (1);
57 unlink (buf);
59 for (i = 0; i < nlocs; ++i)
61 FILE *fp;
62 struct stat st;
63 int fd2;
65 setlocale (LC_ALL, locs[i]);
67 memset (large, '\1', sizeof (large));
68 large[sizeof (large) - 1] = '\0';
70 fd2 = dup (fd);
71 if (fd2 == -1)
73 printf ("cannot dup for locale %s: %m\n",
74 setlocale (LC_ALL, NULL));
75 exit (1);
78 if (ftruncate (fd2, 0) != 0)
80 printf ("cannot truncate file for locale %s: %m\n",
81 setlocale (LC_ALL, NULL));
82 exit (1);
85 fp = fdopen (fd2, "a");
86 if (fp == NULL)
88 printf ("cannot create FILE for locale %s: %m\n",
89 setlocale (LC_ALL, NULL));
90 exit (1);
93 fprintf (fp, "%s", large);
94 fprintf (fp, "%.*s", 30000, large);
95 large[20000] = '\0';
96 fprintf (fp, large);
98 if (fflush (fp) != 0 || ferror (fp) != 0 || fclose (fp) != 0)
100 printf ("write error for locale %s: %m\n",
101 setlocale (LC_ALL, NULL));
102 exit (1);
105 if (fstat (fd, &st) != 0)
107 printf ("cannot stat for locale %s: %m\n",
108 setlocale (LC_ALL, NULL));
109 exit (1);
111 else if (st.st_size != 99999)
113 printf ("file size incorrect for locale %s: %jd instead of %jd\n",
114 setlocale (LC_ALL, NULL),
115 (intmax_t) st.st_size, (intmax_t) 99999);
116 res = 1;
118 else
119 printf ("locale %s OK\n", setlocale (LC_ALL, NULL));
122 close (fd);
124 return res;