svn commit: r281597 - user/ngie/more-tests/contrib/netbsd-tests/lib/libm

Garrett Cooper ngie at FreeBSD.org
Thu Apr 16 08:50:42 UTC 2015


Author: ngie
Date: Thu Apr 16 08:50:41 2015
New Revision: 281597
URL: https://svnweb.freebsd.org/changeset/base/281597

Log:
  the fmodl compat shims on arm/mips/powerpc don't seem to be all there
  #if 0 the code for now
  
  PR: 199422

Modified:
  user/ngie/more-tests/contrib/netbsd-tests/lib/libm/t_fmod.c

Modified: user/ngie/more-tests/contrib/netbsd-tests/lib/libm/t_fmod.c
==============================================================================
--- user/ngie/more-tests/contrib/netbsd-tests/lib/libm/t_fmod.c	Thu Apr 16 08:46:43 2015	(r281596)
+++ user/ngie/more-tests/contrib/netbsd-tests/lib/libm/t_fmod.c	Thu Apr 16 08:50:41 2015	(r281597)
@@ -43,7 +43,9 @@ ATF_TC_BODY(fmod, tc)
 {
 	ATF_CHECK(fmodf(2.0, 1.0) == 0);
 	ATF_CHECK(fmod(2.0, 1.0) == 0);
+#if !defined(__FreeBSD__) || LDBL_PREC != 53
 	ATF_CHECK(fmodl(2.0, 1.0) == 0);
+#endif
 
 	ATF_CHECK(fmodf(2.0, 0.5) == 0);
 	ATF_CHECK(fmod(2.0, 0.5) == 0);


More information about the svn-src-user mailing list