svn commit: r313400 - projects/netbsd-tests-upstream-01-2017/contrib/netbsd-tests/lib/libm

Ngie Cooper ngie at FreeBSD.org
Tue Feb 7 18:57:53 UTC 2017


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();


More information about the svn-src-projects mailing list