1 /* Test of POSIX compatible fprintf() function.
2 Copyright (C) 2007, 2009-2024 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007. */
23 /* This test assumes getrlimit() and setrlimit().
24 With "gcc -fcheck-pointer-bounds -mmpx -static", it produces an
25 endless loop of "Saw a #BR!" messages. */
26 #if HAVE_GETRLIMIT && HAVE_SETRLIMIT && !defined __CHKP__
29 #include <sys/types.h>
31 #include <sys/resource.h>
38 main (int argc
, char *argv
[])
44 if (is_running_under_qemu_user ())
47 /* Some printf implementations allocate temporary space with malloc. */
48 /* On BSD systems, malloc() is limited by RLIMIT_DATA. */
50 if (getrlimit (RLIMIT_DATA
, &limit
) < 0)
52 if (limit
.rlim_max
== RLIM_INFINITY
|| limit
.rlim_max
> 10000000)
53 limit
.rlim_max
= 10000000;
54 limit
.rlim_cur
= limit
.rlim_max
;
55 if (setrlimit (RLIMIT_DATA
, &limit
) < 0)
58 /* On Linux systems, malloc() is limited by RLIMIT_AS. */
60 if (getrlimit (RLIMIT_AS
, &limit
) < 0)
62 if (limit
.rlim_max
== RLIM_INFINITY
|| limit
.rlim_max
> 10000000)
63 limit
.rlim_max
= 10000000;
64 limit
.rlim_cur
= limit
.rlim_max
;
65 if (setrlimit (RLIMIT_AS
, &limit
) < 0)
68 /* Some printf implementations allocate temporary space on the stack. */
70 if (getrlimit (RLIMIT_STACK
, &limit
) < 0)
72 if (limit
.rlim_max
== RLIM_INFINITY
|| limit
.rlim_max
> 10000000)
73 limit
.rlim_max
= 10000000;
74 limit
.rlim_cur
= limit
.rlim_max
;
75 if (setrlimit (RLIMIT_STACK
, &limit
) < 0)
84 void *memory
= malloc (10000000);
87 memset (memory
, 17, 10000000);
91 ret
= fprintf (stdout
, "%.10000000f", 1.0);
92 return !(ret
== 10000002 || (ret
< 0 && errno
== ENOMEM
));
94 ret
= fprintf (stdout
, "%.10000000f", -1.0);
95 return !(ret
== 10000003 || (ret
< 0 && errno
== ENOMEM
));
97 ret
= fprintf (stdout
, "%.10000000e", 1.0);
98 return !(ret
>= 10000006 || (ret
< 0 && errno
== ENOMEM
));
100 ret
= fprintf (stdout
, "%.10000000d", 1);
101 return !(ret
== 10000000 || (ret
< 0 && errno
== ENOMEM
));
103 ret
= fprintf (stdout
, "%.10000000d", -1);
104 return !(ret
== 10000001 || (ret
< 0 && errno
== ENOMEM
));
106 ret
= fprintf (stdout
, "%.10000000u", 1);
107 return !(ret
== 10000000 || (ret
< 0 && errno
== ENOMEM
));
115 main (int argc
, char *argv
[])