update nearly all FSF copyright year lists to include 2010
[gnulib.git] / tests / test-roundl.c
1 /* Test of rounding to nearest, breaking ties away from zero.
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, 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 Ben Pfaff <blp@gnu.org>, 2007.
19    Based heavily on Bruno Haible's test-truncl.c. */
20
21 #include <config.h>
22
23 #include <math.h>
24
25 #include "signature.h"
26 SIGNATURE_CHECK (roundl, long double, (long double));
27
28 #include <float.h>
29
30 #include "fpucw.h"
31 #include "isnanl-nolibm.h"
32 #include "nan.h"
33 #include "macros.h"
34
35 /* On HP-UX 10.20, negating 0.0L does not yield -0.0L.
36    So we use minus_zero instead.
37    IRIX cc can't put -0.0L into .data, but can compute at runtime.
38    Note that the expression -LDBL_MIN * LDBL_MIN does not work on other
39    platforms, such as when cross-compiling to PowerPC on MacOS X 10.5.  */
40 #if defined __hpux || defined __sgi
41 static long double
42 compute_minus_zero (void)
43 {
44   return -LDBL_MIN * LDBL_MIN;
45 }
46 # define minus_zero compute_minus_zero ()
47 #else
48 long double minus_zero = -0.0L;
49 #endif
50
51 int
52 main ()
53 {
54   DECL_LONG_DOUBLE_ROUNDING
55
56   BEGIN_LONG_DOUBLE_ROUNDING ();
57
58   /* Zero.  */
59   ASSERT (roundl (0.0L) == 0.0L);
60   ASSERT (roundl (minus_zero) == 0.0L);
61   /* Positive numbers.  */
62   ASSERT (roundl (0.3L) == 0.0L);
63   ASSERT (roundl (0.5L) == 1.0L);
64   ASSERT (roundl (0.7L) == 1.0L);
65   ASSERT (roundl (1.0L) == 1.0L);
66   ASSERT (roundl (1.5L) == 2.0L);
67   ASSERT (roundl (2.5L) == 3.0L);
68   ASSERT (roundl (1.999L) == 2.0L);
69   ASSERT (roundl (2.0L) == 2.0L);
70   ASSERT (roundl (65535.999L) == 65536.0L);
71   ASSERT (roundl (65536.0L) == 65536.0L);
72   ASSERT (roundl (65536.001L) == 65536.0L);
73   ASSERT (roundl (2.341e31L) == 2.341e31L);
74   /* Negative numbers.  */
75   ASSERT (roundl (-0.3L) == 0.0L);
76   ASSERT (roundl (-0.5L) == -1.0L);
77   ASSERT (roundl (-0.7L) == -1.0L);
78   ASSERT (roundl (-1.0L) == -1.0L);
79   ASSERT (roundl (-1.5L) == -2.0L);
80   ASSERT (roundl (-2.5L) == -3.0L);
81   ASSERT (roundl (-1.999L) == -2.0L);
82   ASSERT (roundl (-2.0L) == -2.0L);
83   ASSERT (roundl (-65535.999L) == -65536.0L);
84   ASSERT (roundl (-65536.0L) == -65536.0L);
85   ASSERT (roundl (-65536.001L) == -65536.0L);
86   ASSERT (roundl (-2.341e31L) == -2.341e31L);
87   /* Infinite numbers.  */
88   ASSERT (roundl (1.0 / 0.0L) == 1.0 / 0.0L);
89   ASSERT (roundl (-1.0 / 0.0L) == -1.0 / 0.0L);
90   /* NaNs.  */
91   ASSERT (isnanl (roundl (NaNl ())));
92
93   return 0;
94 }