minix/tests/lib/libc/gen/t_isnan.c
Lionel Sambuc 84d9c625bf Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC)
- Fix for possible unset uid/gid in toproto
 - Fix for default mtree style
 - Update libelf
 - Importing libexecinfo
 - Resynchronize GCC, mpc, gmp, mpfr
 - build.sh: Replace params with show-params.
     This has been done as the make target has been renamed in the same
     way, while a new target named params has been added. This new
     target generates a file containing all the parameters, instead of
     printing it on the console.
 - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org)
     get getservbyport() out of the inner loop

Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
2014-07-28 17:05:06 +02:00

67 lines
1.3 KiB
C

/* $NetBSD: t_isnan.c,v 1.3 2013/09/16 15:33:24 martin Exp $ */
/*
* This file is in the Public Domain.
*
* The nan test is blatently copied by Simon Burge from the infinity
* test by Ben Harris.
*/
#include <atf-c.h>
#include <atf-c/config.h>
#include <math.h>
#include <string.h>
ATF_TC(isnan_basic);
ATF_TC_HEAD(isnan_basic, tc)
{
atf_tc_set_md_var(tc, "descr", "Verify that isnan(3) works");
}
ATF_TC_BODY(isnan_basic, tc)
{
#ifdef NAN
/* NAN is meant to be a (float)NaN. */
ATF_CHECK(isnan(NAN) != 0);
ATF_CHECK(isnan((double)NAN) != 0);
#else
atf_tc_skip("Test not applicable");
#endif
}
ATF_TC(isinf_basic);
ATF_TC_HEAD(isinf_basic, tc)
{
atf_tc_set_md_var(tc, "descr", "Verify that isinf(3) works");
}
ATF_TC_BODY(isinf_basic, tc)
{
/* HUGE_VAL is meant to be an infinity. */
ATF_CHECK(isinf(HUGE_VAL) != 0);
/* HUGE_VALF is the float analog of HUGE_VAL. */
ATF_CHECK(isinf(HUGE_VALF) != 0);
/* HUGE_VALL is the long double analog of HUGE_VAL. */
ATF_CHECK(isinf(HUGE_VALL) != 0);
}
ATF_TP_ADD_TCS(tp)
{
const char *arch;
arch = atf_config_get("atf_arch");
if (strcmp("m68000", arch) == 0)
atf_tc_skip("Test not applicable on %s", arch);
else {
ATF_TP_ADD_TC(tp, isnan_basic);
ATF_TP_ADD_TC(tp, isinf_basic);
}
return atf_no_error();
}