Add new templates for IEEE wrappers
[glibc.git] / math / libm-test-jn.inc
blob7bb6d758326a181e4252387cc54b551b6ea78524
1 /* Test jn.
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 static const struct test_if_f_data jn_test_data[] =
20   {
21     /* jn is the Bessel function of the first kind of order n.  */
22     /* jn (0, x) == j0 (x)  */
23     TEST_if_f (jn, 0, qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
24     TEST_if_f (jn, 0, -qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
25     TEST_if_f (jn, 0, snan_value, qnan_value, INVALID_EXCEPTION),
26     TEST_if_f (jn, 0, -snan_value, qnan_value, INVALID_EXCEPTION),
27     TEST_if_f (jn, 0, plus_infty, 0, ERRNO_UNCHANGED|IGNORE_ZERO_INF_SIGN),
28     TEST_if_f (jn, 0, minus_infty, 0, ERRNO_UNCHANGED|IGNORE_ZERO_INF_SIGN),
30     /* jn (1, x) == j1 (x)  */
31     TEST_if_f (jn, 1, qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
32     TEST_if_f (jn, 1, -qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
33     TEST_if_f (jn, 1, snan_value, qnan_value, INVALID_EXCEPTION),
34     TEST_if_f (jn, 1, -snan_value, qnan_value, INVALID_EXCEPTION),
35     TEST_if_f (jn, 1, plus_infty, 0, ERRNO_UNCHANGED|IGNORE_ZERO_INF_SIGN),
36     TEST_if_f (jn, 1, minus_infty, minus_zero, ERRNO_UNCHANGED|IGNORE_ZERO_INF_SIGN),
38     /* jn (3, x)  */
39     TEST_if_f (jn, 3, qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
40     TEST_if_f (jn, 3, -qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
41     TEST_if_f (jn, 3, snan_value, qnan_value, INVALID_EXCEPTION),
42     TEST_if_f (jn, 3, -snan_value, qnan_value, INVALID_EXCEPTION),
43     TEST_if_f (jn, 3, plus_infty, 0, ERRNO_UNCHANGED|IGNORE_ZERO_INF_SIGN),
44     TEST_if_f (jn, 3, minus_infty, minus_zero, ERRNO_UNCHANGED|IGNORE_ZERO_INF_SIGN),
46     /*  jn (10, x)  */
47     TEST_if_f (jn, 10, qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
48     TEST_if_f (jn, 10, -qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
49     TEST_if_f (jn, 10, snan_value, qnan_value, INVALID_EXCEPTION),
50     TEST_if_f (jn, 10, -snan_value, qnan_value, INVALID_EXCEPTION),
51     TEST_if_f (jn, 10, plus_infty, 0, ERRNO_UNCHANGED|IGNORE_ZERO_INF_SIGN),
52     TEST_if_f (jn, 10, minus_infty, 0, ERRNO_UNCHANGED|IGNORE_ZERO_INF_SIGN),
54     AUTO_TESTS_if_f (jn),
55   };
57 static void
58 jn_test (void)
60   ALL_RM_TEST (jn, 0, jn_test_data, RUN_TEST_LOOP_if_f, END);
64  * Local Variables:
65  * mode:c
66  * End:
67  */