NetBSD/tests/lib/libm/t_atan.c

293 lines
6.4 KiB
C

/* $NetBSD: t_atan.c,v 1.6 2012/03/11 06:36:05 jruoho Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Jukka Ruohonen.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <atf-c.h>
#include <atf-c/config.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
/*
* atan(3)
*/
ATF_TC(atan_nan);
ATF_TC_HEAD(atan_nan, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atan(NaN) == NaN");
}
ATF_TC_BODY(atan_nan, tc)
{
#ifndef __vax__
const double x = 0.0L / 0.0L;
if (isnan(atan(x)) == 0)
atf_tc_fail_nonfatal("atan(NaN) != NaN");
#endif
}
ATF_TC(atan_inf_neg);
ATF_TC_HEAD(atan_inf_neg, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atan(-Inf) == -pi/2");
}
ATF_TC_BODY(atan_inf_neg, tc)
{
#ifndef __vax__
const double x = -1.0L / 0.0L;
const double eps = 1.0e-40;
if (strcmp(atf_config_get("atf_arch"), "i386") == 0 &&
system("cpuctl identify 0 | grep -q QEMU") != 0)
atf_tc_expect_fail("PR port-i386/46108");
if (fabs(atan(x) + M_PI_2) > eps)
atf_tc_fail_nonfatal("atan(-Inf) != -pi/2");
#endif
}
ATF_TC(atan_inf_pos);
ATF_TC_HEAD(atan_inf_pos, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atan(+Inf) == pi/2");
}
ATF_TC_BODY(atan_inf_pos, tc)
{
#ifndef __vax__
const double x = +1.0L / 0.0L;
const double eps = 1.0e-40;
if (strcmp(atf_config_get("atf_arch"), "i386") == 0 &&
system("cpuctl identify 0 | grep -q QEMU") != 0)
atf_tc_expect_fail("PR port-i386/46108");
if (fabs(atan(x) - M_PI_2) > eps)
atf_tc_fail_nonfatal("atan(+Inf) != pi/2");
#endif
}
ATF_TC(atan_tan);
ATF_TC_HEAD(atan_tan, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atan(tan(x)) == x");
}
ATF_TC_BODY(atan_tan, tc)
{
#ifndef __vax__
const double x[] = { 0.0, 1.0, M_PI / 2, M_PI / 3, M_PI / 6 };
const double eps = 1.0e-40;
double y;
size_t i;
if (strcmp(atf_config_get("atf_arch"), "i386") == 0 &&
system("cpuctl identify 0 | grep -q QEMU") != 0)
atf_tc_expect_fail("PR port-i386/46108");
for (i = 0; i < __arraycount(x); i++) {
y = atan(tan(x[i]));
if (fabs(y - x[i]) > eps)
atf_tc_fail_nonfatal("atan(tan(%0.03f)) != %0.03f",
x[i], x[i]);
}
#endif
}
ATF_TC(atan_zero_neg);
ATF_TC_HEAD(atan_zero_neg, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atan(-0.0) == -0.0");
}
ATF_TC_BODY(atan_zero_neg, tc)
{
#ifndef __vax__
const double x = -0.0L;
double y = atan(x);
if (fabs(y) > 0.0 || signbit(y) == 0)
atf_tc_fail_nonfatal("atan(-0.0) != -0.0");
#endif
}
ATF_TC(atan_zero_pos);
ATF_TC_HEAD(atan_zero_pos, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atan(+0.0) == +0.0");
}
ATF_TC_BODY(atan_zero_pos, tc)
{
#ifndef __vax__
const double x = 0.0L;
double y = atan(x);
if (fabs(y) > 0.0 || signbit(y) != 0)
atf_tc_fail_nonfatal("atan(+0.0) != +0.0");
#endif
}
/*
* atanf(3)
*/
ATF_TC(atanf_nan);
ATF_TC_HEAD(atanf_nan, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atanf(NaN) == NaN");
}
ATF_TC_BODY(atanf_nan, tc)
{
#ifndef __vax__
const float x = 0.0L / 0.0L;
if (isnan(atanf(x)) == 0)
atf_tc_fail_nonfatal("atanf(NaN) != NaN");
#endif
}
ATF_TC(atanf_inf_neg);
ATF_TC_HEAD(atanf_inf_neg, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atanf(-Inf) == -pi/2");
}
ATF_TC_BODY(atanf_inf_neg, tc)
{
#ifndef __vax__
const float x = -1.0L / 0.0L;
const float eps = 1.0e-7;
if (fabsf(atanf(x) + M_PI_2) > eps)
atf_tc_fail_nonfatal("atanf(-Inf) != -pi/2");
#endif
}
ATF_TC(atanf_inf_pos);
ATF_TC_HEAD(atanf_inf_pos, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atanf(+Inf) == pi/2");
}
ATF_TC_BODY(atanf_inf_pos, tc)
{
#ifndef __vax__
const float x = +1.0L / 0.0L;
const float eps = 1.0e-7;
if (fabsf(atanf(x) - M_PI_2) > eps)
atf_tc_fail_nonfatal("atanf(+Inf) != pi/2");
#endif
}
ATF_TC(atanf_tanf);
ATF_TC_HEAD(atanf_tanf, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atanf(tanf(x)) == x");
}
ATF_TC_BODY(atanf_tanf, tc)
{
#ifndef __vax__
const float x[] = { 0.0, 1.0, M_PI / 3, M_PI / 6 };
const float eps = 1.0e-7;
float y;
size_t i;
for (i = 0; i < __arraycount(x); i++) {
y = atanf(tanf(x[i]));
if (fabsf(y - x[i]) > eps)
atf_tc_fail_nonfatal("atanf(tanf(%0.03f)) != %0.03f",
x[i], x[i]);
}
#endif
}
ATF_TC(atanf_zero_neg);
ATF_TC_HEAD(atanf_zero_neg, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atanf(-0.0) == -0.0");
}
ATF_TC_BODY(atanf_zero_neg, tc)
{
#ifndef __vax__
const float x = -0.0L;
float y = atanf(x);
if (fabsf(y) > 0.0 || signbit(y) == 0)
atf_tc_fail_nonfatal("atanf(-0.0) != -0.0");
#endif
}
ATF_TC(atanf_zero_pos);
ATF_TC_HEAD(atanf_zero_pos, tc)
{
atf_tc_set_md_var(tc, "descr", "Test atanf(+0.0) == +0.0");
}
ATF_TC_BODY(atanf_zero_pos, tc)
{
#ifndef __vax__
const float x = 0.0L;
float y = atanf(x);
if (fabsf(y) > 0.0 || signbit(y) != 0)
atf_tc_fail_nonfatal("atanf(+0.0) != +0.0");
#endif
}
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, atan_nan);
ATF_TP_ADD_TC(tp, atan_inf_neg);
ATF_TP_ADD_TC(tp, atan_inf_pos);
ATF_TP_ADD_TC(tp, atan_tan);
ATF_TP_ADD_TC(tp, atan_zero_neg);
ATF_TP_ADD_TC(tp, atan_zero_pos);
ATF_TP_ADD_TC(tp, atanf_nan);
ATF_TP_ADD_TC(tp, atanf_inf_neg);
ATF_TP_ADD_TC(tp, atanf_inf_pos);
ATF_TP_ADD_TC(tp, atanf_tanf);
ATF_TP_ADD_TC(tp, atanf_zero_neg);
ATF_TP_ADD_TC(tp, atanf_zero_pos);
return atf_no_error();
}