Module Name:    src
Committed By:   jruoho
Date:           Sat Sep 17 08:15:43 UTC 2011

Modified Files:
        src/distrib/sets/lists/tests: mi
        src/tests/lib/libm: Makefile
Added Files:
        src/tests/lib/libm: t_pow.c

Log Message:
IEEE corner case tests for the pow(3) family (incl. PR lib/45372).


To generate a diff of this commit:
cvs rdiff -u -r1.385 -r1.386 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.9 -r1.10 src/tests/lib/libm/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/lib/libm/t_pow.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/tests/mi
diff -u src/distrib/sets/lists/tests/mi:1.385 src/distrib/sets/lists/tests/mi:1.386
--- src/distrib/sets/lists/tests/mi:1.385	Wed Sep 14 05:18:18 2011
+++ src/distrib/sets/lists/tests/mi	Sat Sep 17 08:15:43 2011
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.385 2011/09/14 05:18:18 jruoho Exp $
+# $NetBSD: mi,v 1.386 2011/09/17 08:15:43 jruoho Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -553,6 +553,7 @@
 ./usr/libdata/debug/usr/tests/lib/libm/t_ldexp.debug			tests-lib-debug		debug,atf
 ./usr/libdata/debug/usr/tests/lib/libm/t_log.debug			tests-lib-debug		debug,atf
 ./usr/libdata/debug/usr/tests/lib/libm/t_libm.debug			tests-obsolete		obsolete
+./usr/libdata/debug/usr/tests/lib/libm/t_pow.debug			tests-lib-debug		debug,atf
 ./usr/libdata/debug/usr/tests/lib/libm/t_round.debug			tests-lib-debug		debug,atf
 ./usr/libdata/debug/usr/tests/lib/libm/t_scalbn.debug			tests-lib-debug		debug,atf
 ./usr/libdata/debug/usr/tests/lib/libm/t_sin.debug			tests-lib-debug		debug,atf
@@ -2262,6 +2263,7 @@
 ./usr/tests/lib/libm/t_ldexp			tests-lib-tests		atf
 ./usr/tests/lib/libm/t_log			tests-lib-tests		atf
 ./usr/tests/lib/libm/t_libm			tests-obsolete		obsolete
+./usr/tests/lib/libm/t_pow			tests-lib-tests		atf
 ./usr/tests/lib/libm/t_round			tests-lib-tests		atf
 ./usr/tests/lib/libm/t_scalbn			tests-lib-tests		atf
 ./usr/tests/lib/libm/t_sin			tests-lib-tests		atf

Index: src/tests/lib/libm/Makefile
diff -u src/tests/lib/libm/Makefile:1.9 src/tests/lib/libm/Makefile:1.10
--- src/tests/lib/libm/Makefile:1.9	Wed Sep 14 05:18:19 2011
+++ src/tests/lib/libm/Makefile	Sat Sep 17 08:15:43 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2011/09/14 05:18:19 jruoho Exp $
+# $NetBSD: Makefile,v 1.10 2011/09/17 08:15:43 jruoho Exp $
 
 .include <bsd.own.mk>
 
@@ -9,6 +9,7 @@
 TESTS_C+=	t_infinity
 TESTS_C+=	t_ldexp
 TESTS_C+=	t_log
+TESTS_C+=	t_pow
 TESTS_C+=	t_round
 TESTS_C+=	t_scalbn
 TESTS_C+=	t_sin

Added files:

Index: src/tests/lib/libm/t_pow.c
diff -u /dev/null src/tests/lib/libm/t_pow.c:1.1
--- /dev/null	Sat Sep 17 08:15:43 2011
+++ src/tests/lib/libm/t_pow.c	Sat Sep 17 08:15:43 2011
@@ -0,0 +1,677 @@
+/* $NetBSD: t_pow.c,v 1.1 2011/09/17 08:15:43 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 <sys/cdefs.h>
+__RCSID("$NetBSD: t_pow.c,v 1.1 2011/09/17 08:15:43 jruoho Exp $");
+
+#include <atf-c.h>
+#include <math.h>
+
+/*
+ * pow(3)
+ */
+ATF_TC(pow_nan_x);
+ATF_TC_HEAD(pow_nan_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test pow(NaN, y) == NaN");
+}
+
+ATF_TC_BODY(pow_nan_x, tc)
+{
+#ifndef __vax__
+	const double x = 0.0L / 0.0L;
+
+	ATF_CHECK(isnan(pow(x, 2.0)) != 0);
+#endif
+}
+
+ATF_TC(pow_nan_y);
+ATF_TC_HEAD(pow_nan_y, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test pow(x, NaN) == NaN");
+}
+
+ATF_TC_BODY(pow_nan_y, tc)
+{
+#ifndef __vax__
+	const double y = 0.0L / 0.0L;
+
+	ATF_CHECK(isnan(pow(2.0, y)) != 0);
+#endif
+}
+
+ATF_TC(pow_inf_neg_x);
+ATF_TC_HEAD(pow_inf_neg_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test pow(-Inf, y) == +-Inf || +-0.0");
+}
+
+ATF_TC_BODY(pow_inf_neg_x, tc)
+{
+#ifndef __vax__
+	const double x = -1.0L / 0.0L;
+	double z;
+
+	/*
+	 * If y is odd, y > 0, and x is -Inf, -Inf is returned.
+	 * If y is even, y > 0, and x is -Inf, +Inf is returned.
+	 */
+	z = pow(x, 3.0);
+
+	if (isinf(z) == 0 || signbit(z) == 0)
+		atf_tc_fail_nonfatal("pow(-Inf, 3.0) != -Inf");
+
+	z = pow(x, 4.0);
+
+	if (isinf(z) == 0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("pow(-Inf, 4.0) != +Inf");
+
+	/*
+	 * If y is odd, y < 0, and x is -Inf, -0.0 is returned.
+	 * If y is even, y < 0, and x is -Inf, +0.0 is returned.
+	 */
+	z = pow(x, -3.0);
+
+	if (fabs(z) > 0.0 || signbit(z) == 0)
+		atf_tc_fail_nonfatal("pow(-Inf, -3.0) != -0.0");
+
+	z = pow(x, -4.0);
+
+	if (fabs(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("pow(-Inf -4.0) != +0.0");
+#endif
+}
+
+ATF_TC(pow_inf_neg_y);
+ATF_TC_HEAD(pow_inf_neg_y, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test pow(x, -Inf) == +Inf || +0.0");
+}
+
+ATF_TC_BODY(pow_inf_neg_y, tc)
+{
+#ifndef __vax__
+	const double y = -1.0L / 0.0L;
+	double z;
+
+	/*
+	 * If |x| < 1 and y is -Inf, +Inf is returned.
+	 * If |x| > 1 and y is -Inf, +0.0 is returned.
+	 */
+	z = pow(0.1, y);
+
+	if (isinf(z) == 0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("pow(0.1, -Inf) != +Inf");
+
+	z = pow(1.1, y);
+
+	if (fabs(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("pow(1.1, -Inf) != +0.0");
+#endif
+}
+
+ATF_TC(pow_inf_pos_x);
+ATF_TC_HEAD(pow_inf_pos_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test pow(+Inf, y) == +Inf || +0.0");
+}
+
+ATF_TC_BODY(pow_inf_pos_x, tc)
+{
+#ifndef __vax__
+	const double x = 1.0L / 0.0L;
+	double z;
+
+	/*
+	 * For y < 0, if x is +Inf, +0.0 is returned.
+	 * For y > 0, if x is +Inf, +Inf is returned.
+	 */
+	z = pow(x, -2.0);
+
+	if (fabs(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("pow(+Inf, -2.0) != +0.0");
+
+	z = pow(x, 2.0);
+
+	if (isinf(z) == 0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("pow(+Inf, 2.0) != +Inf");
+#endif
+}
+
+ATF_TC(pow_inf_pos_y);
+ATF_TC_HEAD(pow_inf_pos_y, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test pow(x, +Inf) == +Inf || +0.0");
+}
+
+ATF_TC_BODY(pow_inf_pos_y, tc)
+{
+#ifndef __vax__
+	const double y = 1.0L / 0.0L;
+	double z;
+
+	/*
+	 * If |x| < 1 and y is +Inf, +0.0 is returned.
+	 * If |x| > 1 and y is +Inf, +Inf is returned.
+	 */
+	z = pow(0.1, y);
+
+	if (fabs(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("pow(0.1, +Inf) != +0.0");
+
+	z = pow(1.1, y);
+
+	if (isinf(z) == 0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("pow(1.1, +Inf) != +Inf");
+#endif
+}
+
+ATF_TC(pow_one_neg_x);
+ATF_TC_HEAD(pow_one_neg_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test pow(-1.0, +-Inf) == 1.0");
+}
+
+ATF_TC_BODY(pow_one_neg_x, tc)
+{
+#ifndef __vax__
+	const double infp = 1.0L / 0.0L;
+	const double infn = -1.0L / 0.0L;
+
+	/*
+	 * If x is -1.0, and y is +-Inf, 1.0 shall be returned.
+	 */
+	ATF_REQUIRE(isinf(infp) != 0);
+	ATF_REQUIRE(isinf(infn) != 0);
+
+	if (pow(-1.0, infp) != 1.0) {
+		atf_tc_expect_fail("PR lib/45372");
+		atf_tc_fail_nonfatal("pow(-1.0, +Inf) != 1.0");
+	}
+
+	if (pow(-1.0, infn) != 1.0) {
+		atf_tc_expect_fail("PR lib/45372");
+		atf_tc_fail_nonfatal("pow(-1.0, -Inf) != 1.0");
+	}
+#endif
+}
+
+ATF_TC(pow_one_pos_x);
+ATF_TC_HEAD(pow_one_pos_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test pow(1.0, y) == 1.0");
+}
+
+ATF_TC_BODY(pow_one_pos_x, tc)
+{
+#ifndef __vax__
+	const double y[] = { 0.0, 0.1, 2.0, -3.0, 99.0, 99.99, 9999999.9 };
+	const double z = 0.0L / 0.0L;
+	size_t i;
+
+	/*
+	 * For any value of y (including NaN),
+	 * if x is 1.0, 1.0 shall be returned.
+	 */
+	if (pow(1.0, z) != 1.0)
+		atf_tc_fail_nonfatal("pow(1.0, NaN) != 1.0");
+
+	for (i = 0; i < __arraycount(y); i++) {
+
+		if (pow(1.0, y[i]) != 1.0)
+			atf_tc_fail_nonfatal("pow(1.0, %0.01f) != 1.0", y[i]);
+	}
+#endif
+}
+
+ATF_TC(pow_zero_x);
+ATF_TC_HEAD(pow_zero_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test pow(+-0.0, y) == +-0.0 || HUGE");
+}
+
+ATF_TC_BODY(pow_zero_x, tc)
+{
+#ifndef __vax__
+	double z;
+
+	/*
+	 * If x is +0.0 or -0.0, y > 0, and y
+	 * is an odd integer, x is returned.
+	 */
+	z = pow(+0.0, 3.0);
+
+	if (fabs(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("pow(+0.0, 3.0) != +0.0");
+
+	z = pow(-0.0, 3.0);
+
+	if (fabs(z) > 0.0 || signbit(z) == 0)
+		atf_tc_fail_nonfatal("pow(-0.0, 3.0) != -0.0");
+
+	/*
+	 * If y > 0 and not an odd integer,
+	 * if x is +0.0 or -0.0, +0.0 is returned.
+	 */
+	z = pow(+0.0, 4.0);
+
+	if (fabs(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("pow(+0.0, 4.0) != +0.0");
+
+	z = pow(-0.0, 4.0);
+
+	if (fabs(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("pow(-0.0, 4.0) != +0.0");
+
+	/*
+	 * If y < 0 and x is +0.0 or -0.0, either +-HUGE_VAL,
+	 * +-HUGE_VALF, or +-HUGE_VALL shall be returned.
+	 */
+	z = pow(+0.0, -4.0);
+
+	if (z != -HUGE_VAL)
+		atf_tc_fail_nonfatal("pow(+0.0, -4.0) != -HUGE_VAL");
+
+	z = pow(-0.0, -4.0);
+
+	if (z != -HUGE_VAL)
+		atf_tc_fail_nonfatal("pow(-0.0, -4.0) != -HUGE_VAL");
+#endif
+}
+
+ATF_TC(pow_zero_y);
+ATF_TC_HEAD(pow_zero_y, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test pow(x, +-0.0) == 1.0");
+}
+
+ATF_TC_BODY(pow_zero_y, tc)
+{
+#ifndef __vax__
+	const double x[] =  { 0.1, -3.0, 77.0, 99.99, 101.0000001 };
+	const double z = 0.0L / 0.0L;
+	size_t i;
+
+	/*
+	 * For any value of x (including NaN),
+	 * if y is +0.0 or -0.0, 1.0 is returned.
+	 */
+	if (pow(z, +0.0) != 1.0)
+		atf_tc_fail_nonfatal("pow(NaN, +0.0) != 1.0");
+
+	if (pow(z, -0.0) != 1.0)
+		atf_tc_fail_nonfatal("pow(NaN, -0.0) != 1.0");
+
+	for (i = 0; i < __arraycount(x); i++) {
+
+		if (pow(x[i], +0.0) != 1.0)
+			atf_tc_fail_nonfatal("pow(%0.01f, +0.0) != 1.0", x[i]);
+
+		if (pow(x[i], -0.0) != 1.0)
+			atf_tc_fail_nonfatal("pow(%0.01f, -0.0) != 1.0", x[i]);
+	}
+#endif
+}
+
+/*
+ * powf(3)
+ */
+ATF_TC(powf_nan_x);
+ATF_TC_HEAD(powf_nan_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test powf(NaN, y) == NaN");
+}
+
+ATF_TC_BODY(powf_nan_x, tc)
+{
+#ifndef __vax__
+	const float x = 0.0L / 0.0L;
+
+	ATF_CHECK(isnanf(powf(x, 2.0)) != 0);
+#endif
+}
+
+ATF_TC(powf_nan_y);
+ATF_TC_HEAD(powf_nan_y, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test powf(x, NaN) == NaN");
+}
+
+ATF_TC_BODY(powf_nan_y, tc)
+{
+#ifndef __vax__
+	const float y = 0.0L / 0.0L;
+
+	ATF_CHECK(isnanf(powf(2.0, y)) != 0);
+#endif
+}
+
+ATF_TC(powf_inf_neg_x);
+ATF_TC_HEAD(powf_inf_neg_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test powf(-Inf, y) == +-Inf || +-0.0");
+}
+
+ATF_TC_BODY(powf_inf_neg_x, tc)
+{
+#ifndef __vax__
+	const float x = -1.0L / 0.0L;
+	float z;
+
+	/*
+	 * If y is odd, y > 0, and x is -Inf, -Inf is returned.
+	 * If y is even, y > 0, and x is -Inf, +Inf is returned.
+	 */
+	z = powf(x, 3.0);
+
+	if (isinff(z) == 0 || signbit(z) == 0)
+		atf_tc_fail_nonfatal("powf(-Inf, 3.0) != -Inf");
+
+	z = powf(x, 4.0);
+
+	if (isinff(z) == 0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("powf(-Inf, 4.0) != +Inf");
+
+	/*
+	 * If y is odd, y < 0, and x is -Inf, -0.0 is returned.
+	 * If y is even, y < 0, and x is -Inf, +0.0 is returned.
+	 */
+	z = powf(x, -3.0);
+
+	if (fabsf(z) > 0.0 || signbit(z) == 0) {
+		atf_tc_expect_fail("PR lib/45372");
+		atf_tc_fail_nonfatal("powf(-Inf, -3.0) != -0.0");
+	}
+
+	z = powf(x, -4.0);
+
+	if (fabsf(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("powf(-Inf -4.0) != +0.0");
+#endif
+}
+
+ATF_TC(powf_inf_neg_y);
+ATF_TC_HEAD(powf_inf_neg_y, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test powf(x, -Inf) == +Inf || +0.0");
+}
+
+ATF_TC_BODY(powf_inf_neg_y, tc)
+{
+#ifndef __vax__
+	const float y = -1.0L / 0.0L;
+	float z;
+
+	/*
+	 * If |x| < 1 and y is -Inf, +Inf is returned.
+	 * If |x| > 1 and y is -Inf, +0.0 is returned.
+	 */
+	z = powf(0.1, y);
+
+	if (isinff(z) == 0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("powf(0.1, -Inf) != +Inf");
+
+	z = powf(1.1, y);
+
+	if (fabsf(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("powf(1.1, -Inf) != +0.0");
+#endif
+}
+
+ATF_TC(powf_inf_pos_x);
+ATF_TC_HEAD(powf_inf_pos_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test powf(+Inf, y) == +Inf || +0.0");
+}
+
+ATF_TC_BODY(powf_inf_pos_x, tc)
+{
+#ifndef __vax__
+	const float x = 1.0L / 0.0L;
+	float z;
+
+	/*
+	 * For y < 0, if x is +Inf, +0.0 is returned.
+	 * For y > 0, if x is +Inf, +Inf is returned.
+	 */
+	z = powf(x, -2.0);
+
+	if (fabsf(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("powf(+Inf, -2.0) != +0.0");
+
+	z = powf(x, 2.0);
+
+	if (isinff(z) == 0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("powf(+Inf, 2.0) != +Inf");
+#endif
+}
+
+ATF_TC(powf_inf_pos_y);
+ATF_TC_HEAD(powf_inf_pos_y, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test powf(x, +Inf) == +Inf || +0.0");
+}
+
+ATF_TC_BODY(powf_inf_pos_y, tc)
+{
+#ifndef __vax__
+	const float y = 1.0L / 0.0L;
+	float z;
+
+	/*
+	 * If |x| < 1 and y is +Inf, +0.0 is returned.
+	 * If |x| > 1 and y is +Inf, +Inf is returned.
+	 */
+	z = powf(0.1, y);
+
+	if (fabsf(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("powf(0.1, +Inf) != +0.0");
+
+	z = powf(1.1, y);
+
+	if (isinff(z) == 0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("powf(1.1, +Inf) != +Inf");
+#endif
+}
+
+ATF_TC(powf_one_neg_x);
+ATF_TC_HEAD(powf_one_neg_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test powf(-1.0, +-Inf) == 1.0");
+}
+
+ATF_TC_BODY(powf_one_neg_x, tc)
+{
+#ifndef __vax__
+	const float infp = 1.0L / 0.0L;
+	const float infn = -1.0L / 0.0L;
+
+	/*
+	 * If x is -1.0, and y is +-Inf, 1.0 shall be returned.
+	 */
+	ATF_REQUIRE(isinff(infp) != 0);
+	ATF_REQUIRE(isinff(infn) != 0);
+
+	if (powf(-1.0, infp) != 1.0) {
+		atf_tc_expect_fail("PR lib/45372");
+		atf_tc_fail_nonfatal("powf(-1.0, +Inf) != 1.0");
+	}
+
+	if (powf(-1.0, infn) != 1.0) {
+		atf_tc_expect_fail("PR lib/45372");
+		atf_tc_fail_nonfatal("powf(-1.0, -Inf) != 1.0");
+	}
+#endif
+}
+
+ATF_TC(powf_one_pos_x);
+ATF_TC_HEAD(powf_one_pos_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test powf(1.0, y) == 1.0");
+}
+
+ATF_TC_BODY(powf_one_pos_x, tc)
+{
+#ifndef __vax__
+	const float y[] = { 0.0, 0.1, 2.0, -3.0, 99.0, 99.99, 9999999.9 };
+	const float z = 0.0L / 0.0L;
+	size_t i;
+
+	/*
+	 * For any value of y (including NaN),
+	 * if x is 1.0, 1.0 shall be returned.
+	 */
+	if (powf(1.0, z) != 1.0)
+		atf_tc_fail_nonfatal("powf(1.0, NaN) != 1.0");
+
+	for (i = 0; i < __arraycount(y); i++) {
+
+		if (powf(1.0, y[i]) != 1.0)
+			atf_tc_fail_nonfatal("powf(1.0, %0.01f) != 1.0", y[i]);
+	}
+#endif
+}
+
+ATF_TC(powf_zero_x);
+ATF_TC_HEAD(powf_zero_x, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test powf(+-0.0, y) == +-0.0 || HUGE");
+}
+
+ATF_TC_BODY(powf_zero_x, tc)
+{
+#ifndef __vax__
+	float z;
+
+	/*
+	 * If x is +0.0 or -0.0, y > 0, and y
+	 * is an odd integer, x is returned.
+	 */
+	z = powf(+0.0, 3.0);
+
+	if (fabsf(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("powf(+0.0, 3.0) != +0.0");
+
+	z = powf(-0.0, 3.0);
+
+	if (fabsf(z) > 0.0 || signbit(z) == 0)
+		atf_tc_fail_nonfatal("powf(-0.0, 3.0) != -0.0");
+
+	/*
+	 * If y > 0 and not an odd integer,
+	 * if x is +0.0 or -0.0, +0.0 is returned.
+	 */
+	z = powf(+0.0, 4.0);
+
+	if (fabsf(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("powf(+0.0, 4.0) != +0.0");
+
+	z = powf(-0.0, 4.0);
+
+	if (fabsf(z) > 0.0 || signbit(z) != 0)
+		atf_tc_fail_nonfatal("powf(-0.0, 4.0) != +0.0");
+
+	/*
+	 * If y < 0 and x is +0.0 or -0.0, either +-HUGE_VAL,
+	 * +-HUGE_VALF, or +-HUGE_VALL shall be returned.
+	 */
+	z = powf(+0.0, -4.0);
+
+	if (z != -HUGE_VAL)
+		atf_tc_fail_nonfatal("powf(+0.0, -4.0) != -HUGE_VAL");
+
+	z = powf(-0.0, -4.0);
+
+	if (z != -HUGE_VAL)
+		atf_tc_fail_nonfatal("powf(-0.0, -4.0) != -HUGE_VAL");
+#endif
+}
+
+ATF_TC(powf_zero_y);
+ATF_TC_HEAD(powf_zero_y, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test powf(x, +-0.0) == 1.0");
+}
+
+ATF_TC_BODY(powf_zero_y, tc)
+{
+#ifndef __vax__
+	const float x[] =  { 0.1, -3.0, 77.0, 99.99, 101.0000001 };
+	const float z = 0.0L / 0.0L;
+	size_t i;
+
+	/*
+	 * For any value of x (including NaN),
+	 * if y is +0.0 or -0.0, 1.0 is returned.
+	 */
+	if (powf(z, +0.0) != 1.0)
+		atf_tc_fail_nonfatal("powf(NaN, +0.0) != 1.0");
+
+	if (powf(z, -0.0) != 1.0)
+		atf_tc_fail_nonfatal("powf(NaN, -0.0) != 1.0");
+
+	for (i = 0; i < __arraycount(x); i++) {
+
+		if (powf(x[i], +0.0) != 1.0)
+			atf_tc_fail_nonfatal("powf(%0.01f, +0.0) != 1.0",x[i]);
+
+		if (powf(x[i], -0.0) != 1.0)
+			atf_tc_fail_nonfatal("powf(%0.01f, -0.0) != 1.0",x[i]);
+	}
+#endif
+}
+
+ATF_TP_ADD_TCS(tp)
+{
+
+	ATF_TP_ADD_TC(tp, pow_nan_x);
+	ATF_TP_ADD_TC(tp, pow_nan_y);
+	ATF_TP_ADD_TC(tp, pow_inf_neg_x);
+	ATF_TP_ADD_TC(tp, pow_inf_neg_y);
+	ATF_TP_ADD_TC(tp, pow_inf_pos_x);
+	ATF_TP_ADD_TC(tp, pow_inf_pos_y);
+	ATF_TP_ADD_TC(tp, pow_one_neg_x);
+	ATF_TP_ADD_TC(tp, pow_one_pos_x);
+	ATF_TP_ADD_TC(tp, pow_zero_x);
+	ATF_TP_ADD_TC(tp, pow_zero_y);
+
+	ATF_TP_ADD_TC(tp, powf_nan_x);
+	ATF_TP_ADD_TC(tp, powf_nan_y);
+	ATF_TP_ADD_TC(tp, powf_inf_neg_x);
+	ATF_TP_ADD_TC(tp, powf_inf_neg_y);
+	ATF_TP_ADD_TC(tp, powf_inf_pos_x);
+	ATF_TP_ADD_TC(tp, powf_inf_pos_y);
+	ATF_TP_ADD_TC(tp, powf_one_neg_x);
+	ATF_TP_ADD_TC(tp, powf_one_pos_x);
+	ATF_TP_ADD_TC(tp, powf_zero_x);
+	ATF_TP_ADD_TC(tp, powf_zero_y);
+
+	return atf_no_error();
+}

Reply via email to