usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-ilogb.h
bloba39eba1101f109087f6580b3f0e0a899578b2515
1 /* Test of ilogb*() function family.
2 Copyright (C) 2012-2024 Free Software Foundation, Inc.
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.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 static DOUBLE
18 my_ldexp (DOUBLE x, int d)
20 for (; d > 0; d--)
21 x *= L_(2.0);
22 for (; d < 0; d++)
23 x *= L_(0.5);
24 return x;
27 static void
28 test_function (void)
30 int i;
31 VOLATILE DOUBLE x;
32 int y;
34 /* Some particular values. */
35 x = L_(0.6);
36 y = ILOGB (x);
37 ASSERT (y == -1);
39 x = L_(1.2);
40 y = ILOGB (x);
41 ASSERT (y == 0);
43 x = L_(2.1);
44 y = ILOGB (x);
45 ASSERT (y == 1);
47 x = L_(3.9);
48 y = ILOGB (x);
49 ASSERT (y == 1);
51 x = L_(4.0);
52 y = ILOGB (x);
53 ASSERT (y == (FLT_RADIX == 2 ? 2 : 1));
55 x = L_(0.25);
56 y = ILOGB (x);
57 ASSERT (y == (FLT_RADIX == 2 ? -2 : -1));
59 /* Zero. */
60 ASSERT (ILOGB (L_(0.0)) == FP_ILOGB0);
61 ASSERT (ILOGB (MINUS_ZERO) == FP_ILOGB0);
63 /* Infinity. */
64 ASSERT (ILOGB (INFINITY) == INT_MAX);
65 ASSERT (ILOGB (- INFINITY) == INT_MAX);
67 /* NaN. */
68 ASSERT (ILOGB (NAN) == FP_ILOGBNAN);
70 /* From here on, this test assumes FLT_RADIX == 2. */
72 for (i = 1, x = L_(1.0); i <= MAX_EXP; i++, x *= L_(2.0))
74 y = ILOGB (x);
75 ASSERT (y == i - 1);
77 for (i = 1, x = L_(1.0); i >= MIN_NORMAL_EXP; i--, x *= L_(0.5))
79 y = ILOGB (x);
80 ASSERT (y == i - 1);
82 for (; i >= MIN_EXP - 100 && x > L_(0.0); i--, x *= L_(0.5))
84 y = ILOGB (x);
85 ASSERT (y == i - 1);
88 for (i = 1, x = - L_(1.0); i <= MAX_EXP; i++, x *= L_(2.0))
90 y = ILOGB (x);
91 ASSERT (y == i - 1);
93 for (i = 1, x = - L_(1.0); i >= MIN_NORMAL_EXP; i--, x *= L_(0.5))
95 y = ILOGB (x);
96 ASSERT (y == i - 1);
98 for (; i >= MIN_EXP - 100 && x < L_(0.0); i--, x *= L_(0.5))
100 y = ILOGB (x);
101 ASSERT (y == i - 1);
104 for (i = 1, x = L_(1.01); i <= MAX_EXP; i++, x *= L_(2.0))
106 y = ILOGB (x);
107 ASSERT (y == i - 1);
109 for (i = 1, x = L_(1.01); i >= MIN_NORMAL_EXP; i--, x *= L_(0.5))
111 y = ILOGB (x);
112 ASSERT (y == i - 1);
114 for (; i >= MIN_EXP - 100 && x > L_(0.0); i--, x *= L_(0.5))
116 y = ILOGB (x);
117 ASSERT (y == i - 1);
120 for (i = 1, x = L_(1.73205); i <= MAX_EXP; i++, x *= L_(2.0))
122 y = ILOGB (x);
123 ASSERT (y == i - 1);
125 for (i = 1, x = L_(1.73205); i >= MIN_NORMAL_EXP; i--, x *= L_(0.5))
127 y = ILOGB (x);
128 ASSERT (y == i - 1);
130 for (; i >= MIN_EXP - 100 && x > L_(0.0); i--, x *= L_(0.5))
132 y = ILOGB (x);
133 ASSERT (y == i - 1 || y == i);
136 /* Randomized tests. */
137 for (i = 0; i < SIZEOF (RANDOM); i++)
139 x = L_(20.0) * RANDOM[i] - L_(10.0); /* -10.0 <= x <= 10.0 */
140 if (x != L_(0.0))
142 DOUBLE abs_x = (x < L_(0.0) ? - x : x);
143 y = ILOGB (x);
144 ASSERT (abs_x >= my_ldexp (L_(1.0), y));
145 ASSERT (abs_x < my_ldexp (L_(1.0), y + 1));
150 volatile DOUBLE x;
151 DOUBLE y;