Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Jul 2017 03:56:42 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r321457 - head/lib/msun/tests
Message-ID:  <201707250356.v6P3ugDo062321@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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++) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707250356.v6P3ugDo062321>