svn commit: r321454 - projects/runtime-coverage/lib/msun/tests

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


Author: ngie
Date: Tue Jul 25 03:48:24 2017
New Revision: 321454
URL: https://svnweb.freebsd.org/changeset/base/321454

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:
  projects/runtime-coverage/lib/msun/tests/trig_test.c

Modified: projects/runtime-coverage/lib/msun/tests/trig_test.c
==============================================================================
--- projects/runtime-coverage/lib/msun/tests/trig_test.c	Tue Jul 25 03:43:00 2017	(r321453)
+++ projects/runtime-coverage/lib/msun/tests/trig_test.c	Tue Jul 25 03:48:24 2017	(r321454)
@@ -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-projects mailing list