svn commit: r312012 - head/lib/msun/tests

Ngie Cooper ngie at FreeBSD.org
Fri Jan 13 04:21:10 UTC 2017


Author: ngie
Date: Fri Jan 13 04:21:09 2017
New Revision: 312012
URL: https://svnweb.freebsd.org/changeset/base/312012

Log:
  fmaxmin_test still fails with clang 3.9.x.. bypass the test
  
  MFC after:	3 days
  PR:		208703
  Sponsored by:	Dell EMC Isilon

Modified:
  head/lib/msun/tests/Makefile

Modified: head/lib/msun/tests/Makefile
==============================================================================
--- head/lib/msun/tests/Makefile	Fri Jan 13 04:04:48 2017	(r312011)
+++ head/lib/msun/tests/Makefile	Fri Jan 13 04:21:09 2017	(r312012)
@@ -56,7 +56,7 @@ TAP_TESTS_C+=	exponential_test
 TAP_TESTS_C+=	fenv_test
 TAP_TESTS_C+=	fma_test
 # clang 3.8.0 fails always fails this test. See: bug 208703
-.if ! (${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} == 30800)
+.if ! (${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 30800)
 TAP_TESTS_C+=	fmaxmin_test
 .endif
 TAP_TESTS_C+=	ilogb2_test


More information about the svn-src-all mailing list