1 /* $NetBSD: t_tan.c,v 1.5 2014/03/03 10:39:08 martin Exp $ */
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
40 { -180, -3.141592653589793, 0.0000000000000000 },
41 { -135, -2.356194490192345, 1.0000000000000000 },
42 { -45, -0.785398163397448, -1.0000000000000000 },
43 { 0, 0.000000000000000, 0.0000000000000000 },
44 { 30, 0.523598775598299, 0.5773502691896258 },
45 { 45, 0.785398163397448, 1.0000000000000000 },
46 { 60, 1.047197551196598, 1.7320508075688773 },
47 { 120, 2.094395102393195, -1.7320508075688773 },
48 { 135, 2.356194490192345, -1.0000000000000000 },
49 { 150, 2.617993877991494, -0.5773502691896258 },
50 { 180, 3.141592653589793, 0.0000000000000000 },
51 { 360, 6.283185307179586, 0.0000000000000000 }
58 ATF_TC_HEAD(tan_angles
, tc
)
60 atf_tc_set_md_var(tc
, "descr", "Test some selected angles");
63 ATF_TC_BODY(tan_angles
, tc
)
65 const double eps
= 1.0e-14;
68 for (i
= 0; i
< __arraycount(angles
); i
++) {
70 if (fabs(tan(angles
[i
].x
) - angles
[i
].y
) > eps
)
71 atf_tc_fail_nonfatal("tan(%d deg) != %0.01f",
72 angles
[i
].angle
, angles
[i
].y
);
77 ATF_TC_HEAD(tan_nan
, tc
)
79 atf_tc_set_md_var(tc
, "descr", "Test tan(NaN) == NaN");
82 ATF_TC_BODY(tan_nan
, tc
)
84 const double x
= 0.0L / 0.0L;
86 ATF_CHECK(isnan(x
) != 0);
87 ATF_CHECK(isnan(tan(x
)) != 0);
91 ATF_TC_HEAD(tan_inf_neg
, tc
)
93 atf_tc_set_md_var(tc
, "descr", "Test tan(-Inf) == NaN");
96 ATF_TC_BODY(tan_inf_neg
, tc
)
98 const double x
= -1.0L / 0.0L;
100 ATF_CHECK(isnan(tan(x
)) != 0);
104 ATF_TC_HEAD(tan_inf_pos
, tc
)
106 atf_tc_set_md_var(tc
, "descr", "Test tan(+Inf) == NaN");
109 ATF_TC_BODY(tan_inf_pos
, tc
)
111 const double x
= 1.0L / 0.0L;
113 ATF_CHECK(isnan(tan(x
)) != 0);
117 ATF_TC(tan_zero_neg
);
118 ATF_TC_HEAD(tan_zero_neg
, tc
)
120 atf_tc_set_md_var(tc
, "descr", "Test tan(-0.0) == -0.0");
123 ATF_TC_BODY(tan_zero_neg
, tc
)
125 const double x
= -0.0L;
127 ATF_CHECK(tan(x
) == x
);
130 ATF_TC(tan_zero_pos
);
131 ATF_TC_HEAD(tan_zero_pos
, tc
)
133 atf_tc_set_md_var(tc
, "descr", "Test tan(+0.0) == +0.0");
136 ATF_TC_BODY(tan_zero_pos
, tc
)
138 const double x
= 0.0L;
140 ATF_CHECK(tan(x
) == x
);
147 ATF_TC_HEAD(tanf_angles
, tc
)
149 atf_tc_set_md_var(tc
, "descr", "Test some selected angles");
152 ATF_TC_BODY(tanf_angles
, tc
)
154 const float eps
= 1.0e-6;
158 for (i
= 0; i
< __arraycount(angles
); i
++) {
163 if (fabsf(tanf(x
) - y
) > eps
)
164 atf_tc_fail_nonfatal("tanf(%d deg) != %0.01f",
165 angles
[i
].angle
, angles
[i
].y
);
170 ATF_TC_HEAD(tanf_nan
, tc
)
172 atf_tc_set_md_var(tc
, "descr", "Test tanf(NaN) == NaN");
175 ATF_TC_BODY(tanf_nan
, tc
)
177 const float x
= 0.0L / 0.0L;
179 ATF_CHECK(isnan(x
) != 0);
180 ATF_CHECK(isnan(tanf(x
)) != 0);
183 ATF_TC(tanf_inf_neg
);
184 ATF_TC_HEAD(tanf_inf_neg
, tc
)
186 atf_tc_set_md_var(tc
, "descr", "Test tanf(-Inf) == NaN");
189 ATF_TC_BODY(tanf_inf_neg
, tc
)
191 const float x
= -1.0L / 0.0L;
193 if (isnan(tanf(x
)) == 0) {
194 atf_tc_expect_fail("PR lib/45362");
195 atf_tc_fail("tanf(-Inf) != NaN");
199 ATF_TC(tanf_inf_pos
);
200 ATF_TC_HEAD(tanf_inf_pos
, tc
)
202 atf_tc_set_md_var(tc
, "descr", "Test tanf(+Inf) == NaN");
205 ATF_TC_BODY(tanf_inf_pos
, tc
)
207 const float x
= 1.0L / 0.0L;
209 if (isnan(tanf(x
)) == 0) {
210 atf_tc_expect_fail("PR lib/45362");
211 atf_tc_fail("tanf(+Inf) != NaN");
216 ATF_TC(tanf_zero_neg
);
217 ATF_TC_HEAD(tanf_zero_neg
, tc
)
219 atf_tc_set_md_var(tc
, "descr", "Test tanf(-0.0) == -0.0");
222 ATF_TC_BODY(tanf_zero_neg
, tc
)
224 const float x
= -0.0L;
226 ATF_CHECK(tanf(x
) == x
);
229 ATF_TC(tanf_zero_pos
);
230 ATF_TC_HEAD(tanf_zero_pos
, tc
)
232 atf_tc_set_md_var(tc
, "descr", "Test tanf(+0.0) == +0.0");
235 ATF_TC_BODY(tanf_zero_pos
, tc
)
237 const float x
= 0.0L;
239 ATF_CHECK(tanf(x
) == x
);
245 ATF_TP_ADD_TC(tp
, tan_angles
);
246 ATF_TP_ADD_TC(tp
, tan_nan
);
247 ATF_TP_ADD_TC(tp
, tan_inf_neg
);
248 ATF_TP_ADD_TC(tp
, tan_inf_pos
);
249 ATF_TP_ADD_TC(tp
, tan_zero_neg
);
250 ATF_TP_ADD_TC(tp
, tan_zero_pos
);
252 ATF_TP_ADD_TC(tp
, tanf_angles
);
253 ATF_TP_ADD_TC(tp
, tanf_nan
);
254 ATF_TP_ADD_TC(tp
, tanf_inf_neg
);
255 ATF_TP_ADD_TC(tp
, tanf_inf_pos
);
256 ATF_TP_ADD_TC(tp
, tanf_zero_neg
);
257 ATF_TP_ADD_TC(tp
, tanf_zero_pos
);
259 return atf_no_error();