Imported Upstream version 0.9.3
[platform/upstream/libunistring.git] / tests / test-isnanf.h
1 /* Test of isnanf() substitute.
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 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 <limits.h>
20
21 #include "nan.h"
22 #include "macros.h"
23
24 /* HP cc on HP-UX 10.20 has a bug with the constant expression -0.0f.
25    So we use -zero instead.  */
26 float zero = 0.0f;
27
28 int
29 main ()
30 {
31   /* Finite values.  */
32   ASSERT (!isnanf (3.141f));
33   ASSERT (!isnanf (3.141e30f));
34   ASSERT (!isnanf (3.141e-30f));
35   ASSERT (!isnanf (-2.718f));
36   ASSERT (!isnanf (-2.718e30f));
37   ASSERT (!isnanf (-2.718e-30f));
38   ASSERT (!isnanf (0.0f));
39   ASSERT (!isnanf (-zero));
40   /* Infinite values.  */
41   ASSERT (!isnanf (1.0f / 0.0f));
42   ASSERT (!isnanf (-1.0f / 0.0f));
43   /* Quiet NaN.  */
44   ASSERT (isnanf (NaNf ()));
45 #if defined FLT_EXPBIT0_WORD && defined FLT_EXPBIT0_BIT
46   /* Signalling NaN.  */
47   {
48     #define NWORDS \
49       ((sizeof (float) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
50     typedef union { float value; unsigned int word[NWORDS]; } memory_float;
51     memory_float m;
52     m.value = NaNf ();
53 # if FLT_EXPBIT0_BIT > 0
54     m.word[FLT_EXPBIT0_WORD] ^= (unsigned int) 1 << (FLT_EXPBIT0_BIT - 1);
55 # else
56     m.word[FLT_EXPBIT0_WORD + (FLT_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
57       ^= (unsigned int) 1 << (sizeof (unsigned int) * CHAR_BIT - 1);
58 # endif
59     if (FLT_EXPBIT0_WORD < NWORDS / 2)
60       m.word[FLT_EXPBIT0_WORD + 1] |= (unsigned int) 1 << FLT_EXPBIT0_BIT;
61     else
62       m.word[0] |= (unsigned int) 1;
63     ASSERT (isnanf (m.value));
64   }
65 #endif
66   return 0;
67 }