spawn: Use special invocation for <spawn.h> on OS/2 kLIBC.
[gnulib.git] / tests / test-rintl.c
blobd2a4982b04c6621f3a908fca93a5ffdd34101cb9
1 /* Test of rintl() function.
2 Copyright (C) 2010-2021 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 /* Written by Bruno Haible <bruno@clisp.org>, 2010. */
19 #include <config.h>
21 #include <math.h>
23 #include "signature.h"
24 SIGNATURE_CHECK (rintl, long double, (long double));
26 #include <float.h>
27 #include <stdio.h>
29 #include "fpucw.h"
30 #include "isnanl-nolibm.h"
31 #include "minus-zero.h"
32 #include "infinity.h"
33 #include "nan.h"
34 #include "macros.h"
36 #undef INFINITY
37 #undef NAN
39 #define DOUBLE long double
40 #define ISNAN isnanl
41 #define INFINITY Infinityl ()
42 #define NAN NaNl ()
43 #define L_(literal) literal##L
44 #define RINT rintl
45 #define RANDOM randoml
46 #include "test-rint.h"
48 int
49 main ()
51 DECL_LONG_DOUBLE_ROUNDING
53 BEGIN_LONG_DOUBLE_ROUNDING ();
55 /* Consider the current rounding mode, cf.
56 <https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/float.h.html> */
57 if (FLT_ROUNDS == 1)
59 /* The current rounding mode is round-to-nearest
60 (the default in IEEE 754). */
62 /* Zero. */
63 ASSERT (rintl (0.0L) == 0.0L);
64 ASSERT (rintl (minus_zerol) == 0.0L);
65 /* Positive numbers. */
66 ASSERT (rintl (0.3L) == 0.0L);
67 ASSERT (rintl (0.5L) == 0.0L); /* unlike roundl() */
68 ASSERT (rintl (0.7L) == 1.0L);
69 ASSERT (rintl (1.0L) == 1.0L);
70 ASSERT (rintl (1.5L) == 2.0L);
71 ASSERT (rintl (1.999L) == 2.0L);
72 ASSERT (rintl (2.0L) == 2.0L);
73 ASSERT (rintl (2.1L) == 2.0L);
74 ASSERT (rintl (2.5L) == 2.0L); /* unlike roundl() */
75 ASSERT (rintl (2.7L) == 3.0L);
76 ASSERT (rintl (65535.999L) == 65536.0L);
77 ASSERT (rintl (65536.0L) == 65536.0L);
78 ASSERT (rintl (65536.001L) == 65536.0L);
79 ASSERT (rintl (2.341e31L) == 2.341e31L);
80 /* Negative numbers. */
81 ASSERT (rintl (-0.3L) == 0.0L);
82 ASSERT (rintl (-0.5L) == 0.0L); /* unlike roundl() */
83 ASSERT (rintl (-0.7L) == -1.0L);
84 ASSERT (rintl (-1.0L) == -1.0L);
85 ASSERT (rintl (-1.5L) == -2.0L);
86 ASSERT (rintl (-1.999L) == -2.0L);
87 ASSERT (rintl (-2.0L) == -2.0L);
88 ASSERT (rintl (-2.1L) == -2.0L);
89 ASSERT (rintl (-2.5L) == -2.0L); /* unlike roundl() */
90 ASSERT (rintl (-2.7L) == -3.0L);
91 ASSERT (rintl (-65535.999L) == -65536.0L);
92 ASSERT (rintl (-65536.0L) == -65536.0L);
93 ASSERT (rintl (-65536.001L) == -65536.0L);
94 ASSERT (rintl (-2.341e31L) == -2.341e31L);
96 test_function ();
98 return 0;
100 else
102 fputs ("Skipping test: non-standard rounding mode\n", stderr);
103 return 77;