1 /* $NetBSD: t_isnan.c,v 1.5 2014/11/04 00:20:19 justin Exp $ */
4 * This file is in the Public Domain.
6 * The nan test is blatently copied by Simon Burge from the infinity
10 #include <sys/param.h>
18 ATF_TC_HEAD(isnan_basic
, tc
)
20 atf_tc_set_md_var(tc
, "descr", "Verify that isnan(3) works");
23 ATF_TC_BODY(isnan_basic
, tc
)
26 atf_tc_skip("Test not applicable on " MACHINE_ARCH
);
30 /* NAN is meant to be a (float)NaN. */
31 ATF_CHECK(isnan(NAN
) != 0);
32 ATF_CHECK(isnan((double)NAN
) != 0);
34 atf_tc_skip("Test not applicable");
39 ATF_TC_HEAD(isinf_basic
, tc
)
41 atf_tc_set_md_var(tc
, "descr", "Verify that isinf(3) works");
44 ATF_TC_BODY(isinf_basic
, tc
)
47 atf_tc_skip("Test not applicable on " MACHINE_ARCH
);
50 /* HUGE_VAL is meant to be an infinity. */
51 ATF_CHECK(isinf(HUGE_VAL
) != 0);
53 /* HUGE_VALF is the float analog of HUGE_VAL. */
54 ATF_CHECK(isinf(HUGE_VALF
) != 0);
56 /* HUGE_VALL is the long double analog of HUGE_VAL. */
57 ATF_CHECK(isinf(HUGE_VALL
) != 0);
62 ATF_TP_ADD_TC(tp
, isnan_basic
);
63 ATF_TP_ADD_TC(tp
, isinf_basic
);
65 return atf_no_error();