Change copyright notice from GPLv2+ to GPLv3+.
[gnulib.git] / tests / test-isnan.c
1 /* Test of isnan() substitute.
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 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 "isnan.h"
22
23 #include <limits.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26
27 #define ASSERT(expr) \
28   do                                                                         \
29     {                                                                        \
30       if (!(expr))                                                           \
31         {                                                                    \
32           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
33           abort ();                                                          \
34         }                                                                    \
35     }                                                                        \
36   while (0)
37
38 /* The Compaq (ex-DEC) C 6.4 compiler chokes on the expression 0.0 / 0.0.  */
39 #ifdef __DECC
40 static double
41 NaN ()
42 {
43   static double zero = 0.0;
44   return zero / zero;
45 }
46 #else
47 # define NaN() (0.0 / 0.0)
48 #endif
49
50 int
51 main ()
52 {
53   /* Finite values.  */
54   ASSERT (!isnan (3.141));
55   ASSERT (!isnan (3.141e30));
56   ASSERT (!isnan (3.141e-30));
57   ASSERT (!isnan (-2.718));
58   ASSERT (!isnan (-2.718e30));
59   ASSERT (!isnan (-2.718e-30));
60   /* Infinite values.  */
61   ASSERT (!isnan (1.0 / 0.0));
62   ASSERT (!isnan (-1.0 / 0.0));
63   /* Quiet NaN.  */
64   ASSERT (isnan (NaN ()));
65 #if defined DBL_EXPBIT0_WORD && defined DBL_EXPBIT0_BIT
66   /* Signalling NaN.  */
67   {
68     #define NWORDS \
69       ((sizeof (double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
70     typedef union { double value; unsigned int word[NWORDS]; } memory_double;
71     memory_double m;
72     m.value = NaN ();
73 # if DBL_EXPBIT0_BIT > 0
74     m.word[DBL_EXPBIT0_WORD] ^= (unsigned int) 1 << (DBL_EXPBIT0_BIT - 1);
75 # else
76     m.word[DBL_EXPBIT0_WORD + (DBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
77       ^= (unsigned int) 1 << (sizeof (unsigned int) * CHAR_BIT - 1);
78 # endif
79     m.word[DBL_EXPBIT0_WORD + (DBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
80       |= (unsigned int) 1 << DBL_EXPBIT0_BIT;
81     ASSERT (isnan (m.value));
82   }
83 #endif
84   return 0;
85 }