tests: add signature checks
[gnulib.git] / tests / test-ceill.c
1 /* Test of rounding towards positive infinity.
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 (ceill, long double, (long double));
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   DECL_LONG_DOUBLE_ROUNDING
66
67   BEGIN_LONG_DOUBLE_ROUNDING ();
68
69   /* Zero.  */
70   ASSERT (ceill (0.0L) == 0.0L);
71   ASSERT (ceill (minus_zero) == 0.0L);
72   /* Positive numbers.  */
73   ASSERT (ceill (0.3L) == 1.0L);
74   ASSERT (ceill (0.7L) == 1.0L);
75   ASSERT (ceill (1.0L) == 1.0L);
76   ASSERT (ceill (1.001L) == 2.0L);
77   ASSERT (ceill (1.5L) == 2.0L);
78   ASSERT (ceill (1.999L) == 2.0L);
79   ASSERT (ceill (2.0L) == 2.0L);
80   ASSERT (ceill (65535.999L) == 65536.0L);
81   ASSERT (ceill (65536.0L) == 65536.0L);
82   ASSERT (ceill (2.341e31L) == 2.341e31L);
83   /* Negative numbers.  */
84   ASSERT (ceill (-0.3L) == 0.0L);
85   ASSERT (ceill (-0.7L) == 0.0L);
86   ASSERT (ceill (-1.0L) == -1.0L);
87   ASSERT (ceill (-1.5L) == -1.0L);
88   ASSERT (ceill (-1.999L) == -1.0L);
89   ASSERT (ceill (-2.0L) == -2.0L);
90   ASSERT (ceill (-65535.999L) == -65535.0L);
91   ASSERT (ceill (-65536.0L) == -65536.0L);
92   ASSERT (ceill (-2.341e31L) == -2.341e31L);
93   /* Infinite numbers.  */
94   ASSERT (ceill (1.0L / 0.0L) == 1.0L / 0.0L);
95   ASSERT (ceill (-1.0L / 0.0L) == -1.0L / 0.0L);
96   /* NaNs.  */
97   ASSERT (isnanl (ceill (NaNl ())));
98
99   return 0;
100 }