* lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
[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 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 "isnan.h"
23
24 #include <limits.h>
25 #include <stdlib.h>
26
27 #define ASSERT(expr) if (!(expr)) abort ();
28
29 int
30 main ()
31 {
32   /* Finite values.  */
33   ASSERT (!isnan (3.141));
34   ASSERT (!isnan (3.141e30));
35   ASSERT (!isnan (3.141e-30));
36   ASSERT (!isnan (-2.718));
37   ASSERT (!isnan (-2.718e30));
38   ASSERT (!isnan (-2.718e-30));
39   /* Infinite values.  */
40   ASSERT (!isnan (1.0 / 0.0));
41   ASSERT (!isnan (-1.0 / 0.0));
42   /* Quiet NaN.  */
43   ASSERT (isnan (0.0 / 0.0));
44 #if defined DBL_EXPBIT0_WORD && defined DBL_EXPBIT0_BIT
45   /* Signalling NaN.  */
46   {
47     #define NWORDS \
48       ((sizeof (double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
49     typedef union { double value; unsigned int word[NWORDS]; } memory_double;
50     memory_double m;
51     m.value = 0.0 / 0.0;
52 # if DBL_EXPBIT0_BIT > 0
53     m.word[DBL_EXPBIT0_WORD] ^= (unsigned int) 1 << (DBL_EXPBIT0_BIT - 1);
54 # else
55     m.word[DBL_EXPBIT0_WORD + (DBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
56       ^= (unsigned int) 1 << (sizeof (unsigned int) * CHAR_BIT - 1);
57 # endif
58     m.word[DBL_EXPBIT0_WORD + (DBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
59       |= (unsigned int) 1 << DBL_EXPBIT0_BIT;
60     ASSERT (isnan (m.value));
61   }
62 #endif
63   return 0;
64 }