Index: stable/10/contrib/netbsd-tests/lib/libm/t_scalbn.c =================================================================== --- stable/10/contrib/netbsd-tests/lib/libm/t_scalbn.c (revision 276671) +++ stable/10/contrib/netbsd-tests/lib/libm/t_scalbn.c (revision 276672) @@ -1,526 +1,532 @@ /* $NetBSD: t_scalbn.c,v 1.11 2014/03/03 10:39:08 martin 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 __RCSID("$NetBSD: t_scalbn.c,v 1.11 2014/03/03 10:39:08 martin Exp $"); #include #include #include #include #include static const int exps[] = { 0, 1, -1, 100, -100 }; /* tests here do not require specific precision, so we just use double */ struct testcase { int exp; double inval; double result; int error; }; struct testcase test_vals[] = { { 0, 1.00085, 1.00085, 0 }, { 0, 0.99755, 0.99755, 0 }, { 0, -1.00085, -1.00085, 0 }, { 0, -0.99755, -0.99755, 0 }, { 1, 1.00085, 2.0* 1.00085, 0 }, { 1, 0.99755, 2.0* 0.99755, 0 }, { 1, -1.00085, 2.0* -1.00085, 0 }, { 1, -0.99755, 2.0* -0.99755, 0 }, /* * We could add more corner test cases here, but we would have to * add some ifdefs for the exact format and use a reliable * generator program - bail for now and only do trivial stuff above. */ }; /* * scalbn(3) */ ATF_TC(scalbn_val); ATF_TC_HEAD(scalbn_val, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbn() for a few values"); } ATF_TC_BODY(scalbn_val, tc) { const struct testcase *tests = test_vals; const size_t tcnt = __arraycount(test_vals); size_t i; double rv; for (i = 0; i < tcnt; i++) { #ifdef __FreeBSD__ errno = 0; #endif rv = scalbn(tests[i].inval, tests[i].exp); ATF_CHECK_EQ_MSG(errno, tests[i].error, "test %zu: errno %d instead of %d", i, errno, tests[i].error); ATF_CHECK_MSG(fabs(rv-tests[i].result)<2.0*DBL_EPSILON, "test %zu: return value %g instead of %g (difference %g)", i, rv, tests[i].result, tests[i].result-rv); } } ATF_TC(scalbn_nan); ATF_TC_HEAD(scalbn_nan, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbn(NaN, n) == NaN"); } ATF_TC_BODY(scalbn_nan, tc) { const double x = 0.0L / 0.0L; double y; size_t i; ATF_REQUIRE(isnan(x) != 0); for (i = 0; i < __arraycount(exps); i++) { y = scalbn(x, exps[i]); ATF_CHECK(isnan(y) != 0); } } ATF_TC(scalbn_inf_neg); ATF_TC_HEAD(scalbn_inf_neg, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbn(-Inf, n) == -Inf"); } ATF_TC_BODY(scalbn_inf_neg, tc) { const double x = -1.0L / 0.0L; size_t i; for (i = 0; i < __arraycount(exps); i++) ATF_CHECK(scalbn(x, exps[i]) == x); } ATF_TC(scalbn_inf_pos); ATF_TC_HEAD(scalbn_inf_pos, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbn(+Inf, n) == +Inf"); } ATF_TC_BODY(scalbn_inf_pos, tc) { const double x = 1.0L / 0.0L; size_t i; for (i = 0; i < __arraycount(exps); i++) ATF_CHECK(scalbn(x, exps[i]) == x); } ATF_TC(scalbn_ldexp); ATF_TC_HEAD(scalbn_ldexp, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbn(x, n) == ldexp(x, n)"); } ATF_TC_BODY(scalbn_ldexp, tc) { #if FLT_RADIX == 2 const double x = 2.91288191221812821; double y; size_t i; for (i = 0; i < __arraycount(exps); i++) { y = scalbn(x, exps[i]); ATF_CHECK_MSG(y == ldexp(x, exps[i]), "test %zu: exponent=%d, " "y=%g, expected %g (diff: %g)", i, exps[i], y, ldexp(x, exps[i]), y - ldexp(x, exps[i])); } #endif } ATF_TC(scalbn_zero_neg); ATF_TC_HEAD(scalbn_zero_neg, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbn(-0.0, n) == -0.0"); } ATF_TC_BODY(scalbn_zero_neg, tc) { const double x = -0.0L; double y; size_t i; ATF_REQUIRE(signbit(x) != 0); for (i = 0; i < __arraycount(exps); i++) { y = scalbn(x, exps[i]); ATF_CHECK(x == y); ATF_CHECK(signbit(y) != 0); } } ATF_TC(scalbn_zero_pos); ATF_TC_HEAD(scalbn_zero_pos, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbn(+0.0, n) == +0.0"); } ATF_TC_BODY(scalbn_zero_pos, tc) { const double x = 0.0L; double y; size_t i; ATF_REQUIRE(signbit(x) == 0); for (i = 0; i < __arraycount(exps); i++) { y = scalbn(x, exps[i]); ATF_CHECK(x == y); ATF_CHECK(signbit(y) == 0); } } /* * scalbnf(3) */ ATF_TC(scalbnf_val); ATF_TC_HEAD(scalbnf_val, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnf() for a few values"); } ATF_TC_BODY(scalbnf_val, tc) { const struct testcase *tests = test_vals; const size_t tcnt = __arraycount(test_vals); size_t i; double rv; for (i = 0; i < tcnt; i++) { +#ifdef __FreeBSD__ + errno = 0; +#endif rv = scalbnf(tests[i].inval, tests[i].exp); ATF_CHECK_EQ_MSG(errno, tests[i].error, "test %zu: errno %d instead of %d", i, errno, tests[i].error); ATF_CHECK_MSG(fabs(rv-tests[i].result)<2.0*FLT_EPSILON, "test %zu: return value %g instead of %g (difference %g)", i, rv, tests[i].result, tests[i].result-rv); } } ATF_TC(scalbnf_nan); ATF_TC_HEAD(scalbnf_nan, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnf(NaN, n) == NaN"); } ATF_TC_BODY(scalbnf_nan, tc) { const float x = 0.0L / 0.0L; float y; size_t i; ATF_REQUIRE(isnan(x) != 0); for (i = 0; i < __arraycount(exps); i++) { y = scalbnf(x, exps[i]); ATF_CHECK(isnan(y) != 0); } } ATF_TC(scalbnf_inf_neg); ATF_TC_HEAD(scalbnf_inf_neg, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnf(-Inf, n) == -Inf"); } ATF_TC_BODY(scalbnf_inf_neg, tc) { const float x = -1.0L / 0.0L; size_t i; for (i = 0; i < __arraycount(exps); i++) ATF_CHECK(scalbnf(x, exps[i]) == x); } ATF_TC(scalbnf_inf_pos); ATF_TC_HEAD(scalbnf_inf_pos, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnf(+Inf, n) == +Inf"); } ATF_TC_BODY(scalbnf_inf_pos, tc) { const float x = 1.0L / 0.0L; size_t i; for (i = 0; i < __arraycount(exps); i++) ATF_CHECK(scalbnf(x, exps[i]) == x); } ATF_TC(scalbnf_ldexpf); ATF_TC_HEAD(scalbnf_ldexpf, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnf(x, n) == ldexpf(x, n)"); } ATF_TC_BODY(scalbnf_ldexpf, tc) { #if FLT_RADIX == 2 const float x = 2.91288191221812821; float y; size_t i; for (i = 0; i < __arraycount(exps); i++) { y = scalbnf(x, exps[i]); ATF_CHECK_MSG(y == ldexpf(x, exps[i]), "test %zu: exponent=%d, y=%g ldexpf returns %g (diff: %g)", i, exps[i], y, ldexpf(x, exps[i]), y-ldexpf(x, exps[i])); } #endif } ATF_TC(scalbnf_zero_neg); ATF_TC_HEAD(scalbnf_zero_neg, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnf(-0.0, n) == -0.0"); } ATF_TC_BODY(scalbnf_zero_neg, tc) { const float x = -0.0L; float y; size_t i; ATF_REQUIRE(signbit(x) != 0); for (i = 0; i < __arraycount(exps); i++) { y = scalbnf(x, exps[i]); ATF_CHECK(x == y); ATF_CHECK(signbit(y) != 0); } } ATF_TC(scalbnf_zero_pos); ATF_TC_HEAD(scalbnf_zero_pos, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnf(+0.0, n) == +0.0"); } ATF_TC_BODY(scalbnf_zero_pos, tc) { const float x = 0.0L; float y; size_t i; ATF_REQUIRE(signbit(x) == 0); for (i = 0; i < __arraycount(exps); i++) { y = scalbnf(x, exps[i]); ATF_CHECK(x == y); ATF_CHECK(signbit(y) == 0); } } /* * scalbnl(3) */ ATF_TC(scalbnl_val); ATF_TC_HEAD(scalbnl_val, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnl() for a few values"); } ATF_TC_BODY(scalbnl_val, tc) { #ifndef __HAVE_LONG_DOUBLE atf_tc_skip("Requires long double support"); #else const struct testcase *tests = test_vals; const size_t tcnt = __arraycount(test_vals); size_t i; long double rv; for (i = 0; i < tcnt; i++) { +#ifdef __FreeBSD__ + errno = 0; +#endif rv = scalbnl(tests[i].inval, tests[i].exp); ATF_CHECK_EQ_MSG(errno, tests[i].error, "test %zu: errno %d instead of %d", i, errno, tests[i].error); ATF_CHECK_MSG(fabsl(rv-(long double)tests[i].result)<2.0*LDBL_EPSILON, "test %zu: return value %Lg instead of %Lg (difference %Lg)", i, rv, (long double)tests[i].result, (long double)tests[i].result-rv); } #endif } ATF_TC(scalbnl_nan); ATF_TC_HEAD(scalbnl_nan, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnl(NaN, n) == NaN"); } ATF_TC_BODY(scalbnl_nan, tc) { #ifndef __HAVE_LONG_DOUBLE atf_tc_skip("Requires long double support"); #else const long double x = 0.0L / 0.0L; long double y; size_t i; if (isnan(x) == 0) { atf_tc_expect_fail("PR lib/45362"); atf_tc_fail("(0.0L / 0.0L) != NaN"); } for (i = 0; i < __arraycount(exps); i++) { y = scalbnl(x, exps[i]); ATF_CHECK(isnan(y) != 0); } #endif } ATF_TC(scalbnl_inf_neg); ATF_TC_HEAD(scalbnl_inf_neg, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnl(-Inf, n) == -Inf"); } ATF_TC_BODY(scalbnl_inf_neg, tc) { #ifndef __HAVE_LONG_DOUBLE atf_tc_skip("Requires long double support"); #else const long double x = -1.0L / 0.0L; size_t i; for (i = 0; i < __arraycount(exps); i++) ATF_CHECK(scalbnl(x, exps[i]) == x); #endif } ATF_TC(scalbnl_inf_pos); ATF_TC_HEAD(scalbnl_inf_pos, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnl(+Inf, n) == +Inf"); } ATF_TC_BODY(scalbnl_inf_pos, tc) { #ifndef __HAVE_LONG_DOUBLE atf_tc_skip("Requires long double support"); #else const long double x = 1.0L / 0.0L; size_t i; for (i = 0; i < __arraycount(exps); i++) ATF_CHECK(scalbnl(x, exps[i]) == x); #endif } ATF_TC(scalbnl_zero_neg); ATF_TC_HEAD(scalbnl_zero_neg, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnl(-0.0, n) == -0.0"); } ATF_TC_BODY(scalbnl_zero_neg, tc) { #ifndef __HAVE_LONG_DOUBLE atf_tc_skip("Requires long double support"); #else const long double x = -0.0L; long double y; size_t i; ATF_REQUIRE(signbit(x) != 0); for (i = 0; i < __arraycount(exps); i++) { y = scalbnl(x, exps[i]); ATF_CHECK(x == y); ATF_CHECK(signbit(y) != 0); } #endif } ATF_TC(scalbnl_zero_pos); ATF_TC_HEAD(scalbnl_zero_pos, tc) { atf_tc_set_md_var(tc, "descr", "Test scalbnl(+0.0, n) == +0.0"); } ATF_TC_BODY(scalbnl_zero_pos, tc) { #ifndef __HAVE_LONG_DOUBLE atf_tc_skip("Requires long double support"); #else const long double x = 0.0L; long double y; size_t i; ATF_REQUIRE(signbit(x) == 0); for (i = 0; i < __arraycount(exps); i++) { y = scalbnl(x, exps[i]); ATF_CHECK(x == y); ATF_CHECK(signbit(y) == 0); } #endif } ATF_TP_ADD_TCS(tp) { ATF_TP_ADD_TC(tp, scalbn_val); ATF_TP_ADD_TC(tp, scalbn_nan); ATF_TP_ADD_TC(tp, scalbn_inf_neg); ATF_TP_ADD_TC(tp, scalbn_inf_pos); ATF_TP_ADD_TC(tp, scalbn_ldexp); ATF_TP_ADD_TC(tp, scalbn_zero_neg); ATF_TP_ADD_TC(tp, scalbn_zero_pos); ATF_TP_ADD_TC(tp, scalbnf_val); ATF_TP_ADD_TC(tp, scalbnf_nan); ATF_TP_ADD_TC(tp, scalbnf_inf_neg); ATF_TP_ADD_TC(tp, scalbnf_inf_pos); ATF_TP_ADD_TC(tp, scalbnf_ldexpf); ATF_TP_ADD_TC(tp, scalbnf_zero_neg); ATF_TP_ADD_TC(tp, scalbnf_zero_pos); ATF_TP_ADD_TC(tp, scalbnl_val); ATF_TP_ADD_TC(tp, scalbnl_nan); ATF_TP_ADD_TC(tp, scalbnl_inf_neg); ATF_TP_ADD_TC(tp, scalbnl_inf_pos); /* ATF_TP_ADD_TC(tp, scalbnl_ldexp); */ ATF_TP_ADD_TC(tp, scalbnl_zero_neg); ATF_TP_ADD_TC(tp, scalbnl_zero_pos); return atf_no_error(); } Index: stable/10/etc/mtree/BSD.tests.dist =================================================================== --- stable/10/etc/mtree/BSD.tests.dist (revision 276671) +++ stable/10/etc/mtree/BSD.tests.dist (revision 276672) @@ -1,344 +1,346 @@ # $FreeBSD$ # # Please see the file src/etc/mtree/README before making changes to this file. # /set type=dir uname=root gname=wheel mode=0755 . include atf-c .. atf-c++ .. .. share atf .. doc atf .. pjdfstest .. .. .. tests bin date .. mv .. pax .. pkill .. sh builtins .. errors .. execution .. expansion .. parameters .. parser .. set-e .. .. sleep .. test .. .. cddl lib .. sbin .. usr.bin .. usr.sbin .. .. etc .. games .. gnu lib .. usr.bin diff .. .. .. lib atf libatf-c detail .. .. libatf-c++ detail .. .. test-programs .. .. libcrypt .. libmp .. librt .. libthr dlopen .. .. libutil .. + msun + .. .. libexec atf atf-check .. atf-sh .. .. .. sbin dhclient .. devd .. growfs .. mdconfig .. .. secure lib .. libexec .. usr.bin .. usr.sbin .. .. share examples tests atf .. plain .. .. .. .. sys kern .. netinet .. pjdfstest chflags .. chmod .. chown .. ftruncate .. granular .. link .. mkdir .. mkfifo .. mknod .. open .. rename .. rmdir .. symlink .. truncate .. unlink .. .. .. usr.bin apply .. basename .. bmake archives fmt_44bsd .. fmt_44bsd_mod .. fmt_oldbsd .. .. basic t0 .. t1 .. t2 .. t3 .. .. execution ellipsis .. empty .. joberr .. plus .. .. shell builtin .. meta .. path .. path_select .. replace .. select .. .. suffixes basic .. src_wild1 .. src_wild2 .. .. syntax directive-t0 .. enl .. funny-targets .. semi .. .. sysmk t0 2 1 .. .. mk .. .. t1 2 1 .. .. mk .. .. t2 2 1 .. .. mk .. .. .. variables modifier_M .. modifier_t .. opt_V .. t0 .. .. .. calendar .. cmp .. comm .. cut .. dirname .. file2c .. grep .. gzip .. join .. jot .. lastcomm .. m4 .. ncal .. printf .. sed regress.multitest.out .. .. tr .. truncate .. uudecode .. uuencode .. xargs .. yacc yacc .. .. .. usr.sbin etcupdate .. newsyslog .. nmtree .. pw .. sa .. .. .. .. # vim: set expandtab ts=4 sw=4: Index: stable/10/lib/msun/Makefile =================================================================== --- stable/10/lib/msun/Makefile (revision 276671) +++ stable/10/lib/msun/Makefile (revision 276672) @@ -1,220 +1,224 @@ # @(#)Makefile 5.1beta 93/09/24 # $FreeBSD$ # # ==================================================== # Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. # # Developed at SunPro, a Sun Microsystems, Inc. business. # Permission to use, copy, modify, and distribute this # software is freely granted, provided that this notice # is preserved. # ==================================================== # # .if ${MACHINE_CPUARCH} == "i386" ARCH_SUBDIR= i387 .else ARCH_SUBDIR= ${MACHINE_CPUARCH} .endif .include "${ARCH_SUBDIR}/Makefile.inc" .PATH: ${.CURDIR}/${ARCH_SUBDIR} .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" .PATH: ${.CURDIR}/x86 CFLAGS+= -I${.CURDIR}/x86 .endif # long double format .if ${LDBL_PREC} == 64 .PATH: ${.CURDIR}/ld80 CFLAGS+= -I${.CURDIR}/ld80 .elif ${LDBL_PREC} == 113 .PATH: ${.CURDIR}/ld128 CFLAGS+= -I${.CURDIR}/ld128 .endif .PATH: ${.CURDIR}/bsdsrc .PATH: ${.CURDIR}/src .PATH: ${.CURDIR}/man LIB= m SHLIBDIR?= /lib SHLIB_MAJOR= 5 WARNS?= 1 IGNORE_PRAGMA= COMMON_SRCS= b_exp.c b_log.c b_tgamma.c \ e_acos.c e_acosf.c e_acosh.c e_acoshf.c e_asin.c e_asinf.c \ e_atan2.c e_atan2f.c e_atanh.c e_atanhf.c e_cosh.c e_coshf.c e_exp.c \ e_expf.c e_fmod.c e_fmodf.c e_gamma.c e_gamma_r.c e_gammaf.c \ e_gammaf_r.c e_hypot.c e_hypotf.c e_j0.c e_j0f.c e_j1.c e_j1f.c \ e_jn.c e_jnf.c e_lgamma.c e_lgamma_r.c e_lgammaf.c e_lgammaf_r.c \ e_log.c e_log10.c e_log10f.c e_log2.c e_log2f.c e_logf.c \ e_pow.c e_powf.c e_rem_pio2.c \ e_rem_pio2f.c e_remainder.c e_remainderf.c e_scalb.c e_scalbf.c \ e_sinh.c e_sinhf.c e_sqrt.c e_sqrtf.c fenv.c \ imprecise.c \ k_cos.c k_cosf.c k_exp.c k_expf.c k_rem_pio2.c k_sin.c k_sinf.c \ k_tan.c k_tanf.c \ s_asinh.c s_asinhf.c s_atan.c s_atanf.c s_carg.c s_cargf.c s_cargl.c \ s_cbrt.c s_cbrtf.c s_ceil.c s_ceilf.c \ s_copysign.c s_copysignf.c s_cos.c s_cosf.c \ s_csqrt.c s_csqrtf.c s_erf.c s_erff.c \ s_exp2.c s_exp2f.c s_expm1.c s_expm1f.c s_fabsf.c s_fdim.c \ s_finite.c s_finitef.c \ s_floor.c s_floorf.c s_fma.c s_fmaf.c \ s_fmax.c s_fmaxf.c s_fmaxl.c s_fmin.c \ s_fminf.c s_fminl.c s_frexp.c s_frexpf.c s_ilogb.c s_ilogbf.c \ s_ilogbl.c s_isfinite.c s_isnan.c s_isnormal.c \ s_llrint.c s_llrintf.c s_llround.c s_llroundf.c s_llroundl.c \ s_log1p.c s_log1pf.c s_logb.c s_logbf.c s_lrint.c s_lrintf.c \ s_lround.c s_lroundf.c s_lroundl.c s_modff.c \ s_nan.c s_nearbyint.c s_nextafter.c s_nextafterf.c \ s_nexttowardf.c s_remquo.c s_remquof.c \ s_rint.c s_rintf.c s_round.c s_roundf.c \ s_scalbln.c s_scalbn.c s_scalbnf.c s_signbit.c \ s_signgam.c s_significand.c s_significandf.c s_sin.c s_sinf.c \ s_tan.c s_tanf.c s_tanh.c s_tanhf.c s_tgammaf.c s_trunc.c s_truncf.c \ w_cabs.c w_cabsf.c w_drem.c w_dremf.c # Location of fpmath.h and _fpmath.h LIBCDIR= ${.CURDIR}/../libc .if exists(${LIBCDIR}/${MACHINE_ARCH}) LIBC_ARCH=${MACHINE_ARCH} .else LIBC_ARCH=${MACHINE_CPUARCH} .endif CFLAGS+= -I${.CURDIR}/src -I${LIBCDIR}/include \ -I${LIBCDIR}/${LIBC_ARCH} SYM_MAPS+= ${.CURDIR}/Symbol.map VERSION_DEF= ${LIBCDIR}/Versions.def SYMBOL_MAPS= ${SYM_MAPS} # C99 long double functions COMMON_SRCS+= s_copysignl.c s_fabsl.c s_llrintl.c s_lrintl.c s_modfl.c .if ${LDBL_PREC} != 53 # If long double != double use these; otherwise, we alias the double versions. COMMON_SRCS+= e_acoshl.c e_acosl.c e_asinl.c e_atan2l.c e_atanhl.c \ e_coshl.c e_fmodl.c e_hypotl.c \ e_remainderl.c e_sinhl.c e_sqrtl.c \ invtrig.c k_cosl.c k_sinl.c k_tanl.c \ s_asinhl.c s_atanl.c s_cbrtl.c s_ceill.c s_cosl.c s_cprojl.c \ s_csqrtl.c s_erfl.c s_exp2l.c s_expl.c s_floorl.c s_fmal.c \ s_frexpl.c s_logbl.c s_logl.c s_nanl.c s_nextafterl.c \ s_nexttoward.c s_remquol.c s_rintl.c s_roundl.c s_scalbnl.c \ s_sinl.c s_tanhl.c s_tanl.c s_truncl.c w_cabsl.c .endif # C99 complex functions COMMON_SRCS+= catrig.c catrigf.c \ s_ccosh.c s_ccoshf.c s_cexp.c s_cexpf.c \ s_cimag.c s_cimagf.c s_cimagl.c \ s_conj.c s_conjf.c s_conjl.c \ s_cproj.c s_cprojf.c s_creal.c s_crealf.c s_creall.c \ s_csinh.c s_csinhf.c s_ctanh.c s_ctanhf.c # FreeBSD's C library supplies these functions: #COMMON_SRCS+= s_fabs.c s_frexp.c s_isnan.c s_ldexp.c s_modf.c # Exclude the generic versions of what we provide in the MD area. .if defined(ARCH_SRCS) .for i in ${ARCH_SRCS} COMMON_SRCS:= ${COMMON_SRCS:N${i:R}.c} .endfor .endif SRCS= ${COMMON_SRCS} ${ARCH_SRCS} INCS+= fenv.h math.h MAN= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 \ ceil.3 cacos.3 ccos.3 ccosh.3 cexp.3 \ cimag.3 copysign.3 cos.3 cosh.3 csqrt.3 erf.3 exp.3 fabs.3 fdim.3 \ feclearexcept.3 feenableexcept.3 fegetenv.3 \ fegetround.3 fenv.3 floor.3 \ fma.3 fmax.3 fmod.3 hypot.3 ieee.3 ieee_test.3 ilogb.3 j0.3 \ lgamma.3 log.3 lrint.3 lround.3 math.3 nan.3 \ nextafter.3 remainder.3 rint.3 \ round.3 scalbn.3 signbit.3 sin.3 sinh.3 sqrt.3 tan.3 tanh.3 trunc.3 \ complex.3 MLINKS+=acos.3 acosf.3 acos.3 acosl.3 MLINKS+=acosh.3 acoshf.3 acosh.3 acoshl.3 MLINKS+=asin.3 asinf.3 asin.3 asinl.3 MLINKS+=asinh.3 asinhf.3 asinh.3 asinhl.3 MLINKS+=atan.3 atanf.3 atan.3 atanl.3 MLINKS+=atanh.3 atanhf.3 atanh.3 atanhl.3 MLINKS+=atan2.3 atan2f.3 atan2.3 atan2l.3 \ atan2.3 carg.3 atan2.3 cargf.3 atan2.3 cargl.3 MLINKS+=cacos.3 cacosf.3 cacos.3 cacosh.3 cacos.3 cacoshf.3 \ cacos.3 casin.3 cacos.3 casinf.3 cacos.3 casinh.3 cacos.3 casinhf.3 \ cacos.3 catan.3 cacos.3 catanf.3 cacos.3 catanh.3 cacos.3 catanhf.3 MLINKS+=ccos.3 ccosf.3 ccos.3 csin.3 ccos.3 csinf.3 ccos.3 ctan.3 ccos.3 ctanf.3 MLINKS+=ccosh.3 ccoshf.3 ccosh.3 csinh.3 ccosh.3 csinhf.3 \ ccosh.3 ctanh.3 ccosh.3 ctanhf.3 MLINKS+=ceil.3 ceilf.3 ceil.3 ceill.3 MLINKS+=cexp.3 cexpf.3 MLINKS+=cimag.3 cimagf.3 cimag.3 cimagl.3 \ cimag.3 conj.3 cimag.3 conjf.3 cimag.3 conjl.3 \ cimag.3 cproj.3 cimag.3 cprojf.3 cimag.3 cprojl.3 \ cimag.3 creal.3 cimag.3 crealf.3 cimag.3 creall.3 MLINKS+=copysign.3 copysignf.3 copysign.3 copysignl.3 MLINKS+=cos.3 cosf.3 cos.3 cosl.3 MLINKS+=cosh.3 coshf.3 cosh.3 coshl.3 MLINKS+=csqrt.3 csqrtf.3 csqrt.3 csqrtl.3 MLINKS+=erf.3 erfc.3 erf.3 erff.3 erf.3 erfcf.3 erf.3 erfl.3 erf.3 erfcl.3 MLINKS+=exp.3 expm1.3 exp.3 expm1f.3 exp.3 expm1l.3 exp.3 pow.3 exp.3 powf.3 \ exp.3 exp2.3 exp.3 exp2f.3 exp.3 exp2l.3 exp.3 expf.3 exp.3 expl.3 MLINKS+=fabs.3 fabsf.3 fabs.3 fabsl.3 MLINKS+=fdim.3 fdimf.3 fdim.3 fdiml.3 MLINKS+=feclearexcept.3 fegetexceptflag.3 feclearexcept.3 feraiseexcept.3 \ feclearexcept.3 fesetexceptflag.3 feclearexcept.3 fetestexcept.3 MLINKS+=feenableexcept.3 fedisableexcept.3 feenableexcept.3 fegetexcept.3 MLINKS+=fegetenv.3 feholdexcept.3 fegetenv.3 fesetenv.3 \ fegetenv.3 feupdateenv.3 MLINKS+=fegetround.3 fesetround.3 MLINKS+=floor.3 floorf.3 floor.3 floorl.3 MLINKS+=fma.3 fmaf.3 fma.3 fmal.3 MLINKS+=fmax.3 fmaxf.3 fmax.3 fmaxl.3 \ fmax.3 fmin.3 fmax.3 fminf.3 fmax.3 fminl.3 MLINKS+=fmod.3 fmodf.3 fmod.3 fmodl.3 MLINKS+=hypot.3 cabs.3 hypot.3 cabsf.3 hypot.3 cabsl.3 \ hypot.3 hypotf.3 hypot.3 hypotl.3 MLINKS+=ieee_test.3 scalb.3 ieee_test.3 scalbf.3 MLINKS+=ieee_test.3 significand.3 ieee_test.3 significandf.3 MLINKS+=ilogb.3 ilogbf.3 ilogb.3 ilogbl.3 \ ilogb.3 logb.3 ilogb.3 logbf.3 ilogb.3 logbl.3 MLINKS+=j0.3 j1.3 j0.3 jn.3 j0.3 y0.3 j0.3 y1.3 j0.3 y1f.3 j0.3 yn.3 MLINKS+=j0.3 j0f.3 j0.3 j1f.3 j0.3 jnf.3 j0.3 y0f.3 j0.3 ynf.3 MLINKS+=lgamma.3 gamma.3 lgamma.3 gammaf.3 lgamma.3 lgammaf.3 \ lgamma.3 tgamma.3 lgamma.3 tgammaf.3 MLINKS+=log.3 log10.3 log.3 log10f.3 log.3 log10l.3 \ log.3 log1p.3 log.3 log1pf.3 log.3 log1pl.3 \ log.3 logf.3 log.3 logl.3 \ log.3 log2.3 log.3 log2f.3 log.3 log2l.3 MLINKS+=lrint.3 llrint.3 lrint.3 llrintf.3 lrint.3 llrintl.3 \ lrint.3 lrintf.3 lrint.3 lrintl.3 MLINKS+=lround.3 llround.3 lround.3 llroundf.3 lround.3 llroundl.3 \ lround.3 lroundf.3 lround.3 lroundl.3 MLINKS+=nan.3 nanf.3 nan.3 nanl.3 MLINKS+=nextafter.3 nextafterf.3 nextafter.3 nextafterl.3 MLINKS+=nextafter.3 nexttoward.3 nextafter.3 nexttowardf.3 MLINKS+=nextafter.3 nexttowardl.3 MLINKS+=remainder.3 remainderf.3 remainder.3 remainderl.3 \ remainder.3 remquo.3 remainder.3 remquof.3 remainder.3 remquol.3 MLINKS+=rint.3 rintf.3 rint.3 rintl.3 \ rint.3 nearbyint.3 rint.3 nearbyintf.3 rint.3 nearbyintl.3 MLINKS+=round.3 roundf.3 round.3 roundl.3 MLINKS+=scalbn.3 scalbln.3 scalbn.3 scalblnf.3 scalbn.3 scalblnl.3 MLINKS+=scalbn.3 scalbnf.3 scalbn.3 scalbnl.3 MLINKS+=sin.3 sinf.3 sin.3 sinl.3 MLINKS+=sinh.3 sinhf.3 sinh.3 sinhl.3 MLINKS+=sqrt.3 cbrt.3 sqrt.3 cbrtf.3 sqrt.3 cbrtl.3 sqrt.3 sqrtf.3 \ sqrt.3 sqrtl.3 MLINKS+=tan.3 tanf.3 tan.3 tanl.3 MLINKS+=tanh.3 tanhf.3 tanh.3 tanhl.3 MLINKS+=trunc.3 truncf.3 trunc.3 truncl.3 +.include + +.include + .include Index: stable/10/lib/msun/Makefile.amd64 =================================================================== --- stable/10/lib/msun/Makefile.amd64 (nonexistent) +++ stable/10/lib/msun/Makefile.amd64 (revision 276672) @@ -0,0 +1,6 @@ +# $FreeBSD$ + +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + Property changes on: stable/10/lib/msun/Makefile.amd64 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: stable/10/lib/msun/Makefile.i386 =================================================================== --- stable/10/lib/msun/Makefile.i386 (nonexistent) +++ stable/10/lib/msun/Makefile.i386 (revision 276672) @@ -0,0 +1,6 @@ +# $FreeBSD$ + +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + Property changes on: stable/10/lib/msun/Makefile.i386 ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: stable/10/lib/msun/tests/Makefile =================================================================== --- stable/10/lib/msun/tests/Makefile (nonexistent) +++ stable/10/lib/msun/tests/Makefile (revision 276672) @@ -0,0 +1,63 @@ +# $FreeBSD$ + +OBJTOP= ${.OBJDIR:H:H:H} +SRCTOP= ${.CURDIR:H:H:H} +TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libm + +TESTSDIR= ${TESTSBASE}/lib/msun + +.if ${MACHINE} == "sparc" || ${MACHINE} == "i386" \ + || ${MACHINE} == "amd64" || ${MACHINE_CPU} == "arm" \ + || ${MACHINE} == "sparc64" +CFLAGS+= -DHAVE_FENV_H +.endif + +.if ${MACHINE} == "amd64" || ${MACHINE} == "i386" +CFLAGS+= -D__HAVE_LONG_DOUBLE +.endif + +NETBSD_ATF_TESTS_C= acos_test +NETBSD_ATF_TESTS_C+= asin_test +NETBSD_ATF_TESTS_C+= atan_test +NETBSD_ATF_TESTS_C+= cbrt_test +NETBSD_ATF_TESTS_C+= ceil_test +NETBSD_ATF_TESTS_C+= cos_test +NETBSD_ATF_TESTS_C+= cosh_test +NETBSD_ATF_TESTS_C+= erf_test +NETBSD_ATF_TESTS_C+= exp_test +NETBSD_ATF_TESTS_C+= fmod_test +NETBSD_ATF_TESTS_C+= infinity_test +NETBSD_ATF_TESTS_C+= ldexp_test +NETBSD_ATF_TESTS_C+= log_test +NETBSD_ATF_TESTS_C+= pow_test +NETBSD_ATF_TESTS_C+= precision_test +NETBSD_ATF_TESTS_C+= round_test +NETBSD_ATF_TESTS_C+= scalbn_test +NETBSD_ATF_TESTS_C+= sin_test +NETBSD_ATF_TESTS_C+= sinh_test +NETBSD_ATF_TESTS_C+= sqrt_test +NETBSD_ATF_TESTS_C+= tan_test +NETBSD_ATF_TESTS_C+= tanh_test + +CSTD= c99 + +LDADD+= -lm +DPADD+= ${LIBM} +#COPTS+= -Wfloat-equal + +# Copied from lib/msun/Makefile +.if ${MACHINE_CPUARCH} == "i386" +ARCH_SUBDIR= i387 +.else +ARCH_SUBDIR= ${MACHINE_CPUARCH} +.endif + +.include "../${ARCH_SUBDIR}/Makefile.inc" + +# XXX: for some odd reason float.h doesn't tell the full story about what the +# precision is. +CFLAGS+= -DLDBL_PREC=${LDBL_PREC} + +.include + +.include Property changes on: stable/10/lib/msun/tests/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: stable/10 =================================================================== --- stable/10 (revision 276671) +++ stable/10 (revision 276672) Property changes on: stable/10 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r274618,276521