1 /* Test of rint*() function family.
2 Copyright (C) 2012-2018 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/>. */
20 /* Infinite numbers. */
21 ASSERT (RINT (INFINITY
) == INFINITY
);
22 ASSERT (RINT (- INFINITY
) == - INFINITY
);
24 ASSERT (ISNAN (RINT (NAN
)));
26 /* Randomized tests. */
30 for (i
= 0; i
< SIZEOF (RANDOM
); i
++)
34 x
= L_(0.5) * RANDOM
[i
];
35 ASSERT (RINT (x
) == L_(0.0));
37 ASSERT (RINT (x
) == L_(0.0));
39 x
= L_(1.0) - L_(0.5) * RANDOM
[i
];
40 ASSERT (RINT (x
) == L_(1.0));
42 ASSERT (RINT (x
) == - L_(1.0));
44 x
= L_(1.0) + L_(0.5) * RANDOM
[i
];
45 ASSERT (RINT (x
) == L_(1.0));
47 ASSERT (RINT (x
) == - L_(1.0));
49 x
= L_(2.0) - L_(0.5) * RANDOM
[i
];
50 ASSERT (RINT (x
) == L_(2.0));
52 ASSERT (RINT (x
) == - L_(2.0));