Date: Tue, 7 Feb 2017 18:57:52 +0000 (UTC) From: Ngie Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r313400 - projects/netbsd-tests-upstream-01-2017/contrib/netbsd-tests/lib/libm Message-ID: <201702071857.v17IvqLg018241@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Tue Feb 7 18:57:52 2017 New Revision: 313400 URL: https://svnweb.freebsd.org/changeset/base/313400 Log: Expect the t_precision long double checks to fail on FreeBSD/i386 There are some potential issues with the test (as brd@ has pointed out elsewhere) with precision, etc not being set before the test, but as always, more research is required. Modified: projects/netbsd-tests-upstream-01-2017/contrib/netbsd-tests/lib/libm/t_precision.c Modified: projects/netbsd-tests-upstream-01-2017/contrib/netbsd-tests/lib/libm/t_precision.c ============================================================================== --- projects/netbsd-tests-upstream-01-2017/contrib/netbsd-tests/lib/libm/t_precision.c Tue Feb 7 18:47:16 2017 (r313399) +++ projects/netbsd-tests-upstream-01-2017/contrib/netbsd-tests/lib/libm/t_precision.c Tue Feb 7 18:57:52 2017 (r313400) @@ -73,6 +73,11 @@ ATF_TC_BODY(t_precision, tc) ATF_TP_ADD_TCS(tp) { +#ifdef __FreeBSD__ +#ifdef __i386__ + atf_tc_expect_fail("the __HAVE_LONG_DOUBLE checks fail on i386"); +#endif +#endif ATF_TP_ADD_TC(tp, t_precision); return atf_no_error();
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702071857.v17IvqLg018241>