Merge tag 'snapshot-start' into stable
[gnulib.git] / tests / test-rintl.c
1 /* Test of rintl() function.
2    Copyright (C) 2010-2012 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>, 2010.  */
18
19 #include <config.h>
20
21 #include <math.h>
22
23 #include "signature.h"
24 SIGNATURE_CHECK (rintl, long double, (long double));
25
26 #include <float.h>
27 #include <stdio.h>
28
29 #include "fpucw.h"
30 #include "isnanl-nolibm.h"
31 #include "minus-zero.h"
32 #include "infinity.h"
33 #include "nan.h"
34 #include "macros.h"
35
36 #define DOUBLE long double
37 #define ISNAN isnanl
38 #define INFINITY Infinityl ()
39 #define NAN NaNl ()
40 #define L_(literal) literal##L
41 #define RINT rintl
42 #define RANDOM randoml
43 #include "test-rint.h"
44
45 int
46 main ()
47 {
48   DECL_LONG_DOUBLE_ROUNDING
49
50   BEGIN_LONG_DOUBLE_ROUNDING ();
51
52   /* Consider the current rounding mode, cf.
53      <http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/float.h.html>  */
54   if (FLT_ROUNDS == 1)
55     {
56       /* The current rounding mode is round-to-nearest
57          (the default in IEEE 754).  */
58
59       /* Zero.  */
60       ASSERT (rintl (0.0L) == 0.0L);
61       ASSERT (rintl (minus_zerol) == 0.0L);
62       /* Positive numbers.  */
63       ASSERT (rintl (0.3L) == 0.0L);
64       ASSERT (rintl (0.5L) == 0.0L); /* unlike roundl() */
65       ASSERT (rintl (0.7L) == 1.0L);
66       ASSERT (rintl (1.0L) == 1.0L);
67       ASSERT (rintl (1.5L) == 2.0L);
68       ASSERT (rintl (1.999L) == 2.0L);
69       ASSERT (rintl (2.0L) == 2.0L);
70       ASSERT (rintl (2.1L) == 2.0L);
71       ASSERT (rintl (2.5L) == 2.0L); /* unlike roundl() */
72       ASSERT (rintl (2.7L) == 3.0L);
73       ASSERT (rintl (65535.999L) == 65536.0L);
74       ASSERT (rintl (65536.0L) == 65536.0L);
75       ASSERT (rintl (65536.001L) == 65536.0L);
76       ASSERT (rintl (2.341e31L) == 2.341e31L);
77       /* Negative numbers.  */
78       ASSERT (rintl (-0.3L) == 0.0L);
79       ASSERT (rintl (-0.5L) == 0.0L); /* unlike roundl() */
80       ASSERT (rintl (-0.7L) == -1.0L);
81       ASSERT (rintl (-1.0L) == -1.0L);
82       ASSERT (rintl (-1.5L) == -2.0L);
83       ASSERT (rintl (-1.999L) == -2.0L);
84       ASSERT (rintl (-2.0L) == -2.0L);
85       ASSERT (rintl (-2.1L) == -2.0L);
86       ASSERT (rintl (-2.5L) == -2.0L); /* unlike roundl() */
87       ASSERT (rintl (-2.7L) == -3.0L);
88       ASSERT (rintl (-65535.999L) == -65536.0L);
89       ASSERT (rintl (-65536.0L) == -65536.0L);
90       ASSERT (rintl (-65536.001L) == -65536.0L);
91       ASSERT (rintl (-2.341e31L) == -2.341e31L);
92
93       test_function ();
94
95       return 0;
96     }
97   else
98     {
99       fputs ("Skipping test: non-standard rounding mode\n", stderr);
100       return 77;
101     }
102 }