usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-ceill.c
blob95c1ea7c571c5dbc8a1162b2344d89a374e5b4f8
1 /* Test of rounding towards positive infinity.
2 Copyright (C) 2007-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 /* Written by Bruno Haible <bruno@clisp.org>, 2007. */
19 #include <config.h>
21 #include <math.h>
23 #include "signature.h"
24 SIGNATURE_CHECK (ceill, long double, (long double));
26 #include <float.h>
28 #include "fpucw.h"
29 #include "isnanl-nolibm.h"
30 #include "minus-zero.h"
31 #include "infinity.h"
32 #include "nan.h"
33 #include "macros.h"
35 int
36 main ()
38 DECL_LONG_DOUBLE_ROUNDING
40 BEGIN_LONG_DOUBLE_ROUNDING ();
42 /* Zero. */
43 ASSERT (ceill (0.0L) == 0.0L);
44 ASSERT (ceill (minus_zerol) == 0.0L);
45 /* Positive numbers. */
46 ASSERT (ceill (0.3L) == 1.0L);
47 ASSERT (ceill (0.7L) == 1.0L);
48 ASSERT (ceill (1.0L) == 1.0L);
49 ASSERT (ceill (1.001L) == 2.0L);
50 ASSERT (ceill (1.5L) == 2.0L);
51 ASSERT (ceill (1.999L) == 2.0L);
52 ASSERT (ceill (2.0L) == 2.0L);
53 ASSERT (ceill (65535.999L) == 65536.0L);
54 ASSERT (ceill (65536.0L) == 65536.0L);
55 ASSERT (ceill (2.341e31L) == 2.341e31L);
56 /* Negative numbers. */
57 ASSERT (ceill (-0.3L) == 0.0L);
58 ASSERT (ceill (-0.7L) == 0.0L);
59 ASSERT (ceill (-1.0L) == -1.0L);
60 ASSERT (ceill (-1.5L) == -1.0L);
61 ASSERT (ceill (-1.999L) == -1.0L);
62 ASSERT (ceill (-2.0L) == -2.0L);
63 ASSERT (ceill (-65535.999L) == -65535.0L);
64 ASSERT (ceill (-65536.0L) == -65536.0L);
65 ASSERT (ceill (-2.341e31L) == -2.341e31L);
66 /* Infinite numbers. */
67 ASSERT (ceill (Infinityl ()) == Infinityl ());
68 ASSERT (ceill (- Infinityl ()) == - Infinityl ());
69 /* NaNs. */
70 ASSERT (isnanl (ceill (NaNl ())));
72 return test_exit_status;