]> git.ipfire.org Git - thirdparty/glibc.git/blob - math/libm-test-clog10.inc
Add exp10 macro to <tgmath.h> (bug 26108)
[thirdparty/glibc.git] / math / libm-test-clog10.inc
1 /* Test clog10.
2 Copyright (C) 1997-2021 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
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.
9
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.
14
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 <https://www.gnu.org/licenses/>. */
18
19 #include "libm-test-driver.c"
20
21 static const struct test_c_c_data clog10_test_data[] =
22 {
23 TEST_c_c (clog10, minus_zero, 0, minus_infty, lit_pi_ln10_d, DIVIDE_BY_ZERO_EXCEPTION),
24 TEST_c_c (clog10, minus_zero, minus_zero, minus_infty, -lit_pi_ln10_d, DIVIDE_BY_ZERO_EXCEPTION),
25
26 TEST_c_c (clog10, 0, 0, minus_infty, 0.0, DIVIDE_BY_ZERO_EXCEPTION),
27 TEST_c_c (clog10, 0, minus_zero, minus_infty, minus_zero, DIVIDE_BY_ZERO_EXCEPTION),
28
29 TEST_c_c (clog10, minus_infty, plus_infty, plus_infty, lit_pi_3_m_4_ln10_m_d),
30
31 TEST_c_c (clog10, plus_infty, plus_infty, plus_infty, lit_pi_4_ln10_m_d),
32 TEST_c_c (clog10, plus_infty, minus_infty, plus_infty, -lit_pi_4_ln10_m_d),
33
34 TEST_c_c (clog10, 0, plus_infty, plus_infty, lit_pi_2_ln10_m_d),
35 TEST_c_c (clog10, 3, plus_infty, plus_infty, lit_pi_2_ln10_m_d),
36 TEST_c_c (clog10, minus_zero, plus_infty, plus_infty, lit_pi_2_ln10_m_d),
37 TEST_c_c (clog10, -3, plus_infty, plus_infty, lit_pi_2_ln10_m_d),
38 TEST_c_c (clog10, 0, minus_infty, plus_infty, -lit_pi_2_ln10_m_d),
39 TEST_c_c (clog10, 3, minus_infty, plus_infty, -lit_pi_2_ln10_m_d),
40 TEST_c_c (clog10, minus_zero, minus_infty, plus_infty, -lit_pi_2_ln10_m_d),
41 TEST_c_c (clog10, -3, minus_infty, plus_infty, -lit_pi_2_ln10_m_d),
42
43 TEST_c_c (clog10, minus_infty, 0, plus_infty, lit_pi_ln10_d),
44 TEST_c_c (clog10, minus_infty, 1, plus_infty, lit_pi_ln10_d),
45 TEST_c_c (clog10, minus_infty, minus_zero, plus_infty, -lit_pi_ln10_d),
46 TEST_c_c (clog10, minus_infty, -1, plus_infty, -lit_pi_ln10_d),
47
48 TEST_c_c (clog10, plus_infty, 0, plus_infty, 0.0),
49 TEST_c_c (clog10, plus_infty, 1, plus_infty, 0.0),
50 TEST_c_c (clog10, plus_infty, minus_zero, plus_infty, minus_zero),
51 TEST_c_c (clog10, plus_infty, -1, plus_infty, minus_zero),
52
53 TEST_c_c (clog10, plus_infty, qnan_value, plus_infty, qnan_value),
54 TEST_c_c (clog10, minus_infty, qnan_value, plus_infty, qnan_value),
55
56 TEST_c_c (clog10, qnan_value, plus_infty, plus_infty, qnan_value),
57 TEST_c_c (clog10, qnan_value, minus_infty, plus_infty, qnan_value),
58
59 TEST_c_c (clog10, 0, qnan_value, qnan_value, qnan_value, INVALID_EXCEPTION_OK),
60 TEST_c_c (clog10, 3, qnan_value, qnan_value, qnan_value, INVALID_EXCEPTION_OK),
61 TEST_c_c (clog10, minus_zero, qnan_value, qnan_value, qnan_value, INVALID_EXCEPTION_OK),
62 TEST_c_c (clog10, -3, qnan_value, qnan_value, qnan_value, INVALID_EXCEPTION_OK),
63
64 TEST_c_c (clog10, qnan_value, 0, qnan_value, qnan_value, INVALID_EXCEPTION_OK),
65 TEST_c_c (clog10, qnan_value, 5, qnan_value, qnan_value, INVALID_EXCEPTION_OK),
66 TEST_c_c (clog10, qnan_value, minus_zero, qnan_value, qnan_value, INVALID_EXCEPTION_OK),
67 TEST_c_c (clog10, qnan_value, -5, qnan_value, qnan_value, INVALID_EXCEPTION_OK),
68
69 TEST_c_c (clog10, qnan_value, qnan_value, qnan_value, qnan_value),
70
71 AUTO_TESTS_c_c (clog10),
72 };
73
74 static void
75 clog10_test (void)
76 {
77 ALL_RM_TEST (clog10, 0, clog10_test_data, RUN_TEST_LOOP_c_c, END_COMPLEX);
78 }
79
80 static void
81 do_test (void)
82 {
83 clog10_test ();
84 }
85
86 /*
87 * Local Variables:
88 * mode:c
89 * End:
90 */