tests: add signature checks
[gnulib.git] / tests / test-ldexpl.c
1 /* Test of multiplying a 'long double' by a power of 2.
2    Copyright (C) 2007-2009 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 #include <config.h>
20
21 #include <math.h>
22
23 #include "signature.h"
24 SIGNATURE_CHECK (ldexpl, long double, (long double, int));
25
26 #include <float.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29
30 #include "fpucw.h"
31 #include "isnanl-nolibm.h"
32 #include "nan.h"
33
34 #define ASSERT(expr) \
35   do                                                                         \
36     {                                                                        \
37       if (!(expr))                                                           \
38         {                                                                    \
39           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
40           fflush (stderr);                                                   \
41           abort ();                                                          \
42         }                                                                    \
43     }                                                                        \
44   while (0)
45
46 /* On HP-UX 10.20, negating 0.0L does not yield -0.0L.
47    So we use minus_zero instead.
48    IRIX cc can't put -0.0L into .data, but can compute at runtime.
49    Note that the expression -LDBL_MIN * LDBL_MIN does not work on other
50    platforms, such as when cross-compiling to PowerPC on MacOS X 10.5.  */
51 #if defined __hpux || defined __sgi
52 static long double
53 compute_minus_zero (void)
54 {
55   return -LDBL_MIN * LDBL_MIN;
56 }
57 # define minus_zero compute_minus_zero ()
58 #else
59 long double minus_zero = -0.0L;
60 #endif
61
62 int
63 main ()
64 {
65   int i;
66   long double x;
67   long double y;
68   DECL_LONG_DOUBLE_ROUNDING
69
70   BEGIN_LONG_DOUBLE_ROUNDING ();
71
72   { /* NaN.  */
73     x = NaNl ();
74     y = ldexpl (x, 0); ASSERT (isnanl (y));
75     y = ldexpl (x, 5); ASSERT (isnanl (y));
76     y = ldexpl (x, -5); ASSERT (isnanl (y));
77   }
78
79   { /* Positive infinity.  */
80     x = 1.0L / 0.0L;
81     y = ldexpl (x, 0); ASSERT (y == x);
82     y = ldexpl (x, 5); ASSERT (y == x);
83     y = ldexpl (x, -5); ASSERT (y == x);
84   }
85
86   { /* Negative infinity.  */
87     x = -1.0L / 0.0L;
88     y = ldexpl (x, 0); ASSERT (y == x);
89     y = ldexpl (x, 5); ASSERT (y == x);
90     y = ldexpl (x, -5); ASSERT (y == x);
91   }
92
93   { /* Positive zero.  */
94     x = 0.0L;
95     y = ldexpl (x, 0); ASSERT (y == x); ASSERT (!signbit (x));
96     y = ldexpl (x, 5); ASSERT (y == x); ASSERT (!signbit (x));
97     y = ldexpl (x, -5); ASSERT (y == x); ASSERT (!signbit (x));
98   }
99
100   { /* Negative zero.  */
101     x = minus_zero;
102     y = ldexpl (x, 0); ASSERT (y == x); ASSERT (signbit (x));
103     y = ldexpl (x, 5); ASSERT (y == x); ASSERT (signbit (x));
104     y = ldexpl (x, -5); ASSERT (y == x); ASSERT (signbit (x));
105   }
106
107   { /* Positive finite number.  */
108     x = 1.73205L;
109     y = ldexpl (x, 0); ASSERT (y == x);
110     y = ldexpl (x, 5); ASSERT (y == x * 32.0L);
111     y = ldexpl (x, -5); ASSERT (y == x * 0.03125L);
112   }
113
114   { /* Negative finite number.  */
115     x = -20.085536923187667742L;
116     y = ldexpl (x, 0); ASSERT (y == x);
117     y = ldexpl (x, 5); ASSERT (y == x * 32.0L);
118     y = ldexpl (x, -5); ASSERT (y == x * 0.03125L);
119   }
120
121   for (i = 1, x = 1.73205L; i <= LDBL_MAX_EXP; i++, x *= 2.0L)
122     {
123       y = ldexpl (x, 0); ASSERT (y == x);
124       y = ldexpl (x, 5); ASSERT (y == x * 32.0L);
125       y = ldexpl (x, -5); ASSERT (y == x * 0.03125L);
126     }
127   for (i = 1, x = 1.73205L; i >= LDBL_MIN_EXP; i--, x *= 0.5L)
128     {
129       y = ldexpl (x, 0); ASSERT (y == x);
130       y = ldexpl (x, 5); ASSERT (y == x * 32.0L);
131       if (i - 5 >= LDBL_MIN_EXP)
132         {
133           y = ldexpl (x, -5); ASSERT (y == x * 0.03125L);
134         }
135     }
136   for (; i >= LDBL_MIN_EXP - 100 && x > 0.0L; i--, x *= 0.5L)
137     {
138       y = ldexpl (x, 0); ASSERT (y == x);
139       y = ldexpl (x, 5); ASSERT (y == x * 32.0L);
140     }
141
142   return 0;
143 }