Avoid test failures on IRIX 6.5.
[gnulib.git] / tests / test-fprintf-posix.h
1 /* Test of POSIX compatible vsprintf() and sprintf() functions.
2    Copyright (C) 2007 Free Software Foundation, Inc.
3
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 2, or (at your option)
7    any later version.
8
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.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
19
20 static void
21 test_function (int (*my_fprintf) (FILE *, const char *, ...))
22 {
23   /* Here we don't test output that may be platform dependent.
24      The bulk of the tests is done as part of the 'vasnprintf-posix' module.  */
25
26   /* Test support of size specifiers as in C99.  */
27
28   my_fprintf (stdout, "%ju %d\n", (uintmax_t) 12345671, 33, 44, 55);
29
30   my_fprintf (stdout, "%zu %d\n", (size_t) 12345672, 33, 44, 55);
31
32   my_fprintf (stdout, "%tu %d\n", (ptrdiff_t) 12345673, 33, 44, 55);
33
34   /* Test the support of the 'a' and 'A' conversion specifier for hexadecimal
35      output of floating-point numbers.  */
36
37   /* Positive zero.  */
38   my_fprintf (stdout, "%a %d\n", 0.0, 33, 44, 55);
39
40   /* Negative zero.  */
41   my_fprintf (stdout, "%a %d\n", -0.0, 33, 44, 55);
42
43   /* Positive infinity.  */
44   my_fprintf (stdout, "%a %d\n", 1.0 / 0.0, 33, 44, 55);
45
46   /* Negative infinity.  */
47   my_fprintf (stdout, "%a %d\n", -1.0 / 0.0, 33, 44, 55);
48
49   /* FLAG_ZERO with infinite number.  */
50   my_fprintf (stdout, "%010a %d\n", 1.0 / 0.0, 33, 44, 55);
51
52   /* Test the support of the %f format directive.  */
53
54   /* A positive number.  */
55   my_fprintf (stdout, "%f %d\n", 12.75, 33, 44, 55);
56
57   /* A larger positive number.  */
58   my_fprintf (stdout, "%f %d\n", 1234567.0, 33, 44, 55);
59
60   /* A negative number.  */
61   my_fprintf (stdout, "%f %d\n", -0.03125, 33, 44, 55);
62
63   /* Positive zero.  */
64   my_fprintf (stdout, "%f %d\n", 0.0, 33, 44, 55);
65
66   /* Negative zero.  */
67   my_fprintf (stdout, "%f %d\n", -0.0, 33, 44, 55);
68
69   /* FLAG_ZERO.  */
70   my_fprintf (stdout, "%015f %d\n", 1234.0, 33, 44, 55);
71
72   /* Precision.  */
73   my_fprintf (stdout, "%.f %d\n", 1234.0, 33, 44, 55);
74
75   /* A positive number.  */
76   my_fprintf (stdout, "%Lf %d\n", 12.75L, 33, 44, 55);
77
78   /* A larger positive number.  */
79   my_fprintf (stdout, "%Lf %d\n", 1234567.0L, 33, 44, 55);
80
81   /* A negative number.  */
82   my_fprintf (stdout, "%Lf %d\n", -0.03125L, 33, 44, 55);
83
84   /* Positive zero.  */
85   my_fprintf (stdout, "%Lf %d\n", 0.0L, 33, 44, 55);
86
87   /* Negative zero.  */
88   my_fprintf (stdout, "%Lf %d\n", -0.0L, 33, 44, 55);
89
90   /* FLAG_ZERO.  */
91   my_fprintf (stdout, "%015Lf %d\n", 1234.0L, 33, 44, 55);
92
93   /* Precision.  */
94   my_fprintf (stdout, "%.Lf %d\n", 1234.0L, 33, 44, 55);
95
96   /* Test the support of the %F format directive.  */
97
98   /* A positive number.  */
99   my_fprintf (stdout, "%F %d\n", 12.75, 33, 44, 55);
100
101   /* A larger positive number.  */
102   my_fprintf (stdout, "%F %d\n", 1234567.0, 33, 44, 55);
103
104   /* A negative number.  */
105   my_fprintf (stdout, "%F %d\n", -0.03125, 33, 44, 55);
106
107   /* Positive zero.  */
108   my_fprintf (stdout, "%F %d\n", 0.0, 33, 44, 55);
109
110   /* Negative zero.  */
111   my_fprintf (stdout, "%F %d\n", -0.0, 33, 44, 55);
112
113   /* FLAG_ZERO.  */
114   my_fprintf (stdout, "%015F %d\n", 1234.0, 33, 44, 55);
115
116   /* Precision.  */
117   my_fprintf (stdout, "%.F %d\n", 1234.0, 33, 44, 55);
118
119   /* A positive number.  */
120   my_fprintf (stdout, "%LF %d\n", 12.75L, 33, 44, 55);
121
122   /* A larger positive number.  */
123   my_fprintf (stdout, "%LF %d\n", 1234567.0L, 33, 44, 55);
124
125   /* A negative number.  */
126   my_fprintf (stdout, "%LF %d\n", -0.03125L, 33, 44, 55);
127
128   /* Positive zero.  */
129   my_fprintf (stdout, "%LF %d\n", 0.0L, 33, 44, 55);
130
131   /* Negative zero.  */
132   my_fprintf (stdout, "%LF %d\n", -0.0L, 33, 44, 55);
133
134   /* FLAG_ZERO.  */
135   my_fprintf (stdout, "%015LF %d\n", 1234.0L, 33, 44, 55);
136
137   /* Precision.  */
138   my_fprintf (stdout, "%.LF %d\n", 1234.0L, 33, 44, 55);
139
140   /* Test the support of the POSIX/XSI format strings with positions.  */
141
142   my_fprintf (stdout, "%2$d %1$d\n", 33, 55);
143 }