float128: Add strtof128, wcstof128, and related functions.
[glibc.git] / math / libm-test-significand.inc
blob372c076fae2ebe17056b637a1edbf955bc2a6db8
1 /* Test significand.
2    Copyright (C) 1997-2017 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, see
17    <http://www.gnu.org/licenses/>.  */
19 #include "libm-test-driver.c"
21 static const struct test_f_f_data significand_test_data[] =
22   {
23     /* significand returns the mantissa of the exponential
24        representation.  Tests for infinities, zero and NaNs reflect
25        the implementation (including possibility of "inexact" and
26        variations between architectures) rather than any
27        specification.  */
28     TEST_f_f (significand, qnan_value, qnan_value, INVALID_EXCEPTION_OK),
29     TEST_f_f (significand, -qnan_value, qnan_value, INVALID_EXCEPTION_OK),
30     TEST_f_f (significand, snan_value, qnan_value, INVALID_EXCEPTION),
31     TEST_f_f (significand, -snan_value, qnan_value, INVALID_EXCEPTION),
32     TEST_f_f (significand, plus_infty, plus_infty, INVALID_EXCEPTION_OK),
33     TEST_f_f (significand, minus_infty, minus_infty, INVALID_EXCEPTION_OK),
34     TEST_f_f (significand, 0, 0, INVALID_EXCEPTION_OK|DIVIDE_BY_ZERO_EXCEPTION_OK),
35     TEST_f_f (significand, minus_zero, minus_zero, INVALID_EXCEPTION_OK|DIVIDE_BY_ZERO_EXCEPTION_OK),
36     TEST_f_f (significand, min_value, 1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
37     TEST_f_f (significand, -min_value, -1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
38     TEST_f_f (significand, min_subnorm_value, 1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
39     TEST_f_f (significand, -min_subnorm_value, -1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
40     TEST_f_f (significand, 1.0, 1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
41     TEST_f_f (significand, -1.0, -1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
42     TEST_f_f (significand, 4.0, 1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
43     TEST_f_f (significand, -4.0, -1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
44     TEST_f_f (significand, 6.0, 1.5, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
45     TEST_f_f (significand, -6.0, -1.5, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
46     TEST_f_f (significand, 8.0, 1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
47     TEST_f_f (significand, -8.0, -1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
48   };
50 static void
51 significand_test (void)
53   ALL_RM_TEST (significand, 1, significand_test_data, RUN_TEST_LOOP_f_f, END);
56 static void
57 do_test (void)
59   significand_test ();
63  * Local Variables:
64  * mode:c
65  * End:
66  */