Test for module 'truncl'.
[gnulib.git] / tests / test-truncl.c
1 /* Test of rounding towards zero.
2    Copyright (C) 2007 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 2, 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 Bruno Haible <bruno@clisp.org>, 2007.  */
19
20 #include <config.h>
21
22 #include <math.h>
23
24 #include <stdio.h>
25 #include <stdlib.h>
26
27 #include "fpucw.h"
28 #include "isnanl-nolibm.h"
29
30 #define ASSERT(expr) \
31   do                                                                         \
32     {                                                                        \
33       if (!(expr))                                                           \
34         {                                                                    \
35           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
36           abort ();                                                          \
37         }                                                                    \
38     }                                                                        \
39   while (0)
40
41 int
42 main ()
43 {
44   DECL_LONG_DOUBLE_ROUNDING
45
46   BEGIN_LONG_DOUBLE_ROUNDING ();
47
48   /* Zero.  */
49   ASSERT (truncl (0.0L) == 0.0L);
50   ASSERT (truncl (-0.0L) == 0.0L);
51   /* Positive numbers.  */
52   ASSERT (truncl (0.3L) == 0.0L);
53   ASSERT (truncl (0.7L) == 0.0L);
54   ASSERT (truncl (1.0L) == 1.0L);
55   ASSERT (truncl (1.5L) == 1.0L);
56   ASSERT (truncl (1.999L) == 1.0L);
57   ASSERT (truncl (2.0L) == 2.0L);
58   ASSERT (truncl (65535.999L) == 65535.0L);
59   ASSERT (truncl (65536.0L) == 65536.0L);
60   ASSERT (truncl (2.341e31L) == 2.341e31L);
61   /* Negative numbers.  */
62   ASSERT (truncl (-0.3L) == 0.0L);
63   ASSERT (truncl (-0.7L) == 0.0L);
64   ASSERT (truncl (-1.0L) == -1.0L);
65   ASSERT (truncl (-1.5L) == -1.0L);
66   ASSERT (truncl (-1.999L) == -1.0L);
67   ASSERT (truncl (-2.0L) == -2.0L);
68   ASSERT (truncl (-65535.999L) == -65535.0L);
69   ASSERT (truncl (-65536.0L) == -65536.0L);
70   ASSERT (truncl (-2.341e31L) == -2.341e31L);
71   /* Infinite numbers.  */
72   ASSERT (truncl (1.0L / 0.0L) == 1.0L / 0.0L);
73   ASSERT (truncl (-1.0L / 0.0L) == -1.0L / 0.0L);
74   /* NaNs.  */
75   ASSERT (isnanl (truncl (0.0L / 0.0L)));
76
77   return 0;
78 }