added missing dependencies to fix failing unistr/ tests
[gnulib.git] / tests / test-ceilf2.c
1 /* Test of rounding towards positive infinity.
2    Copyright (C) 2007-2010 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 3 of the License, or
7    (at your option) 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, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
18
19 /* When this test fails on some platform, build it together with the gnulib
20    module 'fprintf-posix' for optimal debugging output.  */
21
22 #include <config.h>
23
24 #include <math.h>
25
26 #include <float.h>
27 #include <stdbool.h>
28 #include <stdint.h>
29 #include <stdio.h>
30
31 #include "isnanf-nolibm.h"
32 #include "macros.h"
33
34
35 /* The reference implementation, taken from lib/ceil.c.  */
36
37 #define DOUBLE float
38 #define MANT_DIG FLT_MANT_DIG
39 #define L_(literal) literal##f
40
41 /* 2^(MANT_DIG-1).  */
42 static const DOUBLE TWO_MANT_DIG =
43   /* Assume MANT_DIG <= 5 * 31.
44      Use the identity
45        n = floor(n/5) + floor((n+1)/5) + ... + floor((n+4)/5).  */
46   (DOUBLE) (1U << ((MANT_DIG - 1) / 5))
47   * (DOUBLE) (1U << ((MANT_DIG - 1 + 1) / 5))
48   * (DOUBLE) (1U << ((MANT_DIG - 1 + 2) / 5))
49   * (DOUBLE) (1U << ((MANT_DIG - 1 + 3) / 5))
50   * (DOUBLE) (1U << ((MANT_DIG - 1 + 4) / 5));
51
52 DOUBLE
53 ceilf_reference (DOUBLE x)
54 {
55   /* The use of 'volatile' guarantees that excess precision bits are dropped
56      at each addition step and before the following comparison at the caller's
57      site.  It is necessary on x86 systems where double-floats are not IEEE
58      compliant by default, to avoid that the results become platform and compiler
59      option dependent.  'volatile' is a portable alternative to gcc's
60      -ffloat-store option.  */
61   volatile DOUBLE y = x;
62   volatile DOUBLE z = y;
63
64   if (z > L_(0.0))
65     {
66       /* Avoid rounding errors for values near 2^k, where k >= MANT_DIG-1.  */
67       if (z < TWO_MANT_DIG)
68         {
69           /* Round to the next integer (nearest or up or down, doesn't matter).  */
70           z += TWO_MANT_DIG;
71           z -= TWO_MANT_DIG;
72           /* Enforce rounding up.  */
73           if (z < y)
74             z += L_(1.0);
75         }
76     }
77   else if (z < L_(0.0))
78     {
79       /* Avoid rounding errors for values near -2^k, where k >= MANT_DIG-1.  */
80       if (z > - TWO_MANT_DIG)
81         {
82           /* Round to the next integer (nearest or up or down, doesn't matter).  */
83           z -= TWO_MANT_DIG;
84           z += TWO_MANT_DIG;
85           /* Enforce rounding up.  */
86           if (z < y)
87             z += L_(1.0);
88         }
89     }
90   return z;
91 }
92
93
94 /* Test for equality.  */
95 static int
96 equal (DOUBLE x, DOUBLE y)
97 {
98   return (isnanf (x) ? isnanf (y) : x == y);
99 }
100
101 /* Test whether the result for a given argument is correct.  */
102 static bool
103 correct_result_p (DOUBLE x, DOUBLE result)
104 {
105   return
106     (x > 0 && x <= 1 ? result == L_(1.0) :
107      x + 1 > x ? result >= x && result <= x + 1 && result - x < 1 :
108      equal (result, x));
109 }
110
111 /* Test the function for a given argument.  */
112 static int
113 check (float x)
114 {
115   /* If the reference implementation is incorrect, bail out immediately.  */
116   float reference = ceilf_reference (x);
117   ASSERT (correct_result_p (x, reference));
118   /* If the actual implementation is wrong, return an error code.  */
119   {
120     float result = ceilf (x);
121     if (correct_result_p (x, result))
122       return 0;
123     else
124       {
125 #if GNULIB_TEST_FPRINTF_POSIX
126         fprintf (stderr, "ceilf %g(%a) = %g(%a) or %g(%a)?\n",
127                  x, x, reference, reference, result, result);
128 #endif
129         return 1;
130       }
131   }
132 }
133
134 #define NUM_HIGHBITS 12
135 #define NUM_LOWBITS 4
136
137 int
138 main ()
139 {
140   unsigned int highbits;
141   unsigned int lowbits;
142   int error = 0;
143   for (highbits = 0; highbits < (1 << NUM_HIGHBITS); highbits++)
144     for (lowbits = 0; lowbits < (1 << NUM_LOWBITS); lowbits++)
145       {
146         /* Combine highbits and lowbits into a floating-point number,
147            sign-extending the lowbits to 32-NUM_HIGHBITS bits.  */
148         union { float f; uint32_t i; } janus;
149         janus.i = ((uint32_t) highbits << (32 - NUM_HIGHBITS))
150                   | ((uint32_t) ((int32_t) ((uint32_t) lowbits << (32 - NUM_LOWBITS))
151                                  >> (32 - NUM_LOWBITS - NUM_HIGHBITS))
152                      >> NUM_HIGHBITS);
153         error |= check (janus.f);
154       }
155   return (error ? 1 : 0);
156 }