Remove building with NOCRYPTO option
[minix.git] / tests / lib / libm / t_cbrt.c
bloba7de9f629815d735f8d5dd13563962b784b1bbfb
1 /* $NetBSD: t_cbrt.c,v 1.3 2014/03/03 10:39:08 martin Exp $ */
3 /*-
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
5 * All rights reserved.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jukka Ruohonen.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
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.
31 #include <sys/cdefs.h>
32 __RCSID("$NetBSD: t_cbrt.c,v 1.3 2014/03/03 10:39:08 martin Exp $");
34 #include <atf-c.h>
35 #include <math.h>
36 #include <stdio.h>
39 * cbrt(3)
41 ATF_TC(cbrt_nan);
42 ATF_TC_HEAD(cbrt_nan, tc)
44 atf_tc_set_md_var(tc, "descr", "Test cbrt(NaN) == NaN");
47 ATF_TC_BODY(cbrt_nan, tc)
49 const double x = 0.0L / 0.0L;
51 ATF_CHECK(isnan(x) != 0);
52 ATF_CHECK(isnan(cbrt(x)) != 0);
55 ATF_TC(cbrt_pow);
56 ATF_TC_HEAD(cbrt_pow, tc)
58 atf_tc_set_md_var(tc, "descr", "Test cbrt(3) vs. pow(3)");
61 ATF_TC_BODY(cbrt_pow, tc)
63 const double x[] = { 0.0, 0.005, 1.0, 99.0, 123.123, 9999.0 };
64 const double eps = 1.0e-14;
65 double y, z;
66 size_t i;
68 for (i = 0; i < __arraycount(x); i++) {
70 y = cbrt(x[i]);
71 z = pow(x[i], 1.0 / 3.0);
73 if (fabs(y - z) > eps)
74 atf_tc_fail_nonfatal("cbrt(%0.03f) != "
75 "pow(%0.03f, 1/3)\n", x[i], x[i]);
79 ATF_TC(cbrt_inf_neg);
80 ATF_TC_HEAD(cbrt_inf_neg, tc)
82 atf_tc_set_md_var(tc, "descr", "Test cbrt(-Inf) == -Inf");
85 ATF_TC_BODY(cbrt_inf_neg, tc)
87 const double x = -1.0L / 0.0L;
88 double y = cbrt(x);
90 ATF_CHECK(isinf(y) != 0);
91 ATF_CHECK(signbit(y) != 0);
94 ATF_TC(cbrt_inf_pos);
95 ATF_TC_HEAD(cbrt_inf_pos, tc)
97 atf_tc_set_md_var(tc, "descr", "Test cbrt(+Inf) == +Inf");
100 ATF_TC_BODY(cbrt_inf_pos, tc)
102 const double x = 1.0L / 0.0L;
103 double y = cbrt(x);
105 ATF_CHECK(isinf(y) != 0);
106 ATF_CHECK(signbit(y) == 0);
109 ATF_TC(cbrt_zero_neg);
110 ATF_TC_HEAD(cbrt_zero_neg, tc)
112 atf_tc_set_md_var(tc, "descr", "Test cbrt(-0.0) == -0.0");
115 ATF_TC_BODY(cbrt_zero_neg, tc)
117 const double x = -0.0L;
118 double y = cbrt(x);
120 if (fabs(y) > 0.0 || signbit(y) == 0)
121 atf_tc_fail_nonfatal("cbrt(-0.0) != -0.0");
124 ATF_TC(cbrt_zero_pos);
125 ATF_TC_HEAD(cbrt_zero_pos, tc)
127 atf_tc_set_md_var(tc, "descr", "Test cbrt(+0.0) == +0.0");
130 ATF_TC_BODY(cbrt_zero_pos, tc)
132 const double x = 0.0L;
133 double y = cbrt(x);
135 if (fabs(y) > 0.0 || signbit(y) != 0)
136 atf_tc_fail_nonfatal("cbrt(+0.0) != +0.0");
140 * cbrtf(3)
142 ATF_TC(cbrtf_nan);
143 ATF_TC_HEAD(cbrtf_nan, tc)
145 atf_tc_set_md_var(tc, "descr", "Test cbrtf(NaN) == NaN");
148 ATF_TC_BODY(cbrtf_nan, tc)
150 const float x = 0.0L / 0.0L;
152 ATF_CHECK(isnan(x) != 0);
153 ATF_CHECK(isnan(cbrtf(x)) != 0);
156 ATF_TC(cbrtf_powf);
157 ATF_TC_HEAD(cbrtf_powf, tc)
159 atf_tc_set_md_var(tc, "descr", "Test cbrtf(3) vs. powf(3)");
162 ATF_TC_BODY(cbrtf_powf, tc)
164 const float x[] = { 0.0, 0.005, 1.0, 99.0, 123.123, 9999.0 };
165 const float eps = 1.0e-5;
166 float y, z;
167 size_t i;
169 for (i = 0; i < __arraycount(x); i++) {
171 y = cbrtf(x[i]);
172 z = powf(x[i], 1.0 / 3.0);
174 if (fabsf(y - z) > eps)
175 atf_tc_fail_nonfatal("cbrtf(%0.03f) != "
176 "powf(%0.03f, 1/3)\n", x[i], x[i]);
180 ATF_TC(cbrtf_inf_neg);
181 ATF_TC_HEAD(cbrtf_inf_neg, tc)
183 atf_tc_set_md_var(tc, "descr", "Test cbrtf(-Inf) == -Inf");
186 ATF_TC_BODY(cbrtf_inf_neg, tc)
188 const float x = -1.0L / 0.0L;
189 float y = cbrtf(x);
191 ATF_CHECK(isinf(y) != 0);
192 ATF_CHECK(signbit(y) != 0);
195 ATF_TC(cbrtf_inf_pos);
196 ATF_TC_HEAD(cbrtf_inf_pos, tc)
198 atf_tc_set_md_var(tc, "descr", "Test cbrtf(+Inf) == +Inf");
201 ATF_TC_BODY(cbrtf_inf_pos, tc)
203 const float x = 1.0L / 0.0L;
204 float y = cbrtf(x);
206 ATF_CHECK(isinf(y) != 0);
207 ATF_CHECK(signbit(y) == 0);
210 ATF_TC(cbrtf_zero_neg);
211 ATF_TC_HEAD(cbrtf_zero_neg, tc)
213 atf_tc_set_md_var(tc, "descr", "Test cbrtf(-0.0) == -0.0");
216 ATF_TC_BODY(cbrtf_zero_neg, tc)
218 const float x = -0.0L;
219 float y = cbrtf(x);
221 if (fabsf(y) > 0.0 || signbit(y) == 0)
222 atf_tc_fail_nonfatal("cbrtf(-0.0) != -0.0");
225 ATF_TC(cbrtf_zero_pos);
226 ATF_TC_HEAD(cbrtf_zero_pos, tc)
228 atf_tc_set_md_var(tc, "descr", "Test cbrtf(+0.0) == +0.0");
231 ATF_TC_BODY(cbrtf_zero_pos, tc)
233 const float x = 0.0L;
234 float y = cbrtf(x);
236 if (fabsf(y) > 0.0 || signbit(y) != 0)
237 atf_tc_fail_nonfatal("cbrtf(+0.0) != +0.0");
241 * cbrtl(3)
243 ATF_TC(cbrtl_nan);
244 ATF_TC_HEAD(cbrtl_nan, tc)
246 atf_tc_set_md_var(tc, "descr", "Test cbrtl(NaN) == NaN");
249 ATF_TC_BODY(cbrtl_nan, tc)
251 const long double x = 0.0L / 0.0L;
253 ATF_CHECK(isnan(x) != 0);
254 ATF_CHECK(isnan(cbrtl(x)) != 0);
257 ATF_TC(cbrtl_powl);
258 ATF_TC_HEAD(cbrtl_powl, tc)
260 atf_tc_set_md_var(tc, "descr", "Test cbrtl(3) vs. powl(3)");
263 ATF_TC_BODY(cbrtl_powl, tc)
265 const long double x[] = { 0.0, 0.005, 1.0, 99.0, 123.123, 9999.0 };
266 const long double eps = 1.0e-15;
267 long double y, z;
268 size_t i;
270 for (i = 0; i < __arraycount(x); i++) {
272 y = cbrtl(x[i]);
273 z = powl(x[i], 1.0 / 3.0);
275 if (fabsl(y - z) > eps * fabsl(1 + x[i]))
276 atf_tc_fail_nonfatal("cbrtl(%0.03Lf) != "
277 "powl(%0.03Lf, 1/3)\n", x[i], x[i]);
281 ATF_TC(cbrtl_inf_neg);
282 ATF_TC_HEAD(cbrtl_inf_neg, tc)
284 atf_tc_set_md_var(tc, "descr", "Test cbrtl(-Inf) == -Inf");
287 ATF_TC_BODY(cbrtl_inf_neg, tc)
289 const long double x = -1.0L / 0.0L;
290 long double y = cbrtl(x);
292 ATF_CHECK(isinf(y) != 0);
293 ATF_CHECK(signbit(y) != 0);
296 ATF_TC(cbrtl_inf_pos);
297 ATF_TC_HEAD(cbrtl_inf_pos, tc)
299 atf_tc_set_md_var(tc, "descr", "Test cbrtl(+Inf) == +Inf");
302 ATF_TC_BODY(cbrtl_inf_pos, tc)
304 const long double x = 1.0L / 0.0L;
305 long double y = cbrtl(x);
307 ATF_CHECK(isinf(y) != 0);
308 ATF_CHECK(signbit(y) == 0);
311 ATF_TC(cbrtl_zero_neg);
312 ATF_TC_HEAD(cbrtl_zero_neg, tc)
314 atf_tc_set_md_var(tc, "descr", "Test cbrtl(-0.0) == -0.0");
317 ATF_TC_BODY(cbrtl_zero_neg, tc)
319 const long double x = -0.0L;
320 long double y = cbrtl(x);
322 if (fabsl(y) > 0.0 || signbit(y) == 0)
323 atf_tc_fail_nonfatal("cbrtl(-0.0) != -0.0");
326 ATF_TC(cbrtl_zero_pos);
327 ATF_TC_HEAD(cbrtl_zero_pos, tc)
329 atf_tc_set_md_var(tc, "descr", "Test cbrtl(+0.0) == +0.0");
332 ATF_TC_BODY(cbrtl_zero_pos, tc)
334 const long double x = 0.0L;
335 long double y = cbrtl(x);
337 if (fabsl(y) > 0.0 || signbit(y) != 0)
338 atf_tc_fail_nonfatal("cbrtl(+0.0) != +0.0");
341 ATF_TP_ADD_TCS(tp)
344 ATF_TP_ADD_TC(tp, cbrt_nan);
345 ATF_TP_ADD_TC(tp, cbrt_pow);
346 ATF_TP_ADD_TC(tp, cbrt_inf_neg);
347 ATF_TP_ADD_TC(tp, cbrt_inf_pos);
348 ATF_TP_ADD_TC(tp, cbrt_zero_neg);
349 ATF_TP_ADD_TC(tp, cbrt_zero_pos);
351 ATF_TP_ADD_TC(tp, cbrtf_nan);
352 ATF_TP_ADD_TC(tp, cbrtf_powf);
353 ATF_TP_ADD_TC(tp, cbrtf_inf_neg);
354 ATF_TP_ADD_TC(tp, cbrtf_inf_pos);
355 ATF_TP_ADD_TC(tp, cbrtf_zero_neg);
356 ATF_TP_ADD_TC(tp, cbrtf_zero_pos);
358 ATF_TP_ADD_TC(tp, cbrtl_nan);
359 ATF_TP_ADD_TC(tp, cbrtl_powl);
360 ATF_TP_ADD_TC(tp, cbrtl_inf_neg);
361 ATF_TP_ADD_TC(tp, cbrtl_inf_pos);
362 ATF_TP_ADD_TC(tp, cbrtl_zero_neg);
363 ATF_TP_ADD_TC(tp, cbrtl_zero_pos);
365 return atf_no_error();