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

Ngie Cooper ngie at FreeBSD.org
Tue Jul 25 03:56:43 UTC 2017


Author: ngie
Date: Tue Jul 25 03:56:42 2017
New Revision: 321457
URL: https://svnweb.freebsd.org/changeset/base/321457

Log:
  Mark :reduction as an expected failure
  
  It fails with clang 5.0+.
  
  PR:	220989
  MFC after:	2 months
  MFC with:	r321369
  Reported by:	Jenkins

Modified:
  head/lib/msun/tests/trig_test.c

Modified: head/lib/msun/tests/trig_test.c
==============================================================================
--- head/lib/msun/tests/trig_test.c	Tue Jul 25 03:55:44 2017	(r321456)
+++ head/lib/msun/tests/trig_test.c	Tue Jul 25 03:56:42 2017	(r321457)
@@ -162,6 +162,11 @@ ATF_TC_BODY(reduction, tc)
 	};
 #endif
 
+#if defined(__clang__) && \
+	((__clang_major__ >= 5))
+	atf_tc_expect_fail("test fails with clang 5.0+ - bug 220989");
+#endif
+
 	unsigned i;
 
 	for (i = 0; i < nitems(f_pi_odd); i++) {


More information about the svn-src-head mailing list