Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Sep 2016 08:17:43 +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: r305283 - head/lib/msun/tests
Message-ID:  <201609020817.u828HhDj012514@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Fri Sep  2 08:17:43 2016
New Revision: 305283
URL: https://svnweb.freebsd.org/changeset/base/305283

Log:
  Skip :test_large on i386
  
  More assertions are failing on ^/head now.
  
  PR:	205446
  Sponsored by:	EMC / Isilon Storage Division

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

Modified: head/lib/msun/tests/ctrig_test.c
==============================================================================
--- head/lib/msun/tests/ctrig_test.c	Fri Sep  2 06:55:32 2016	(r305282)
+++ head/lib/msun/tests/ctrig_test.c	Fri Sep  2 08:17:43 2016	(r305283)
@@ -427,7 +427,6 @@ test_large(void)
 	test_odd_tol(ctanh, z,
 		     CMPLXL(1.0, 8.95257245135025991216632140458264468e-309L),
 		     DBL_ULP());
-#if !defined(__i386__)
 	z = CMPLXL(30, 0x1p1023L);
 	test_odd_tol(ctanh, z,
 		     CMPLXL(1.0, -1.62994325413993477997492170229268382e-26L),
@@ -437,7 +436,6 @@ test_large(void)
 		     CMPLXL(0.878606311888306869546254022621986509L,
 			    -0.225462792499754505792678258169527424L),
 		     DBL_ULP());
-#endif
 
 	z = CMPLXL(710.6, 0.78539816339744830961566084581987572L);
 	test_odd_tol(csinh, z,
@@ -475,8 +473,12 @@ main(int argc, char *argv[])
 	test_small();
 	printf("ok 5 - ctrig small\n");
 
+#if defined(__i386__)
+	printf("ok 6 # SKIP ctrig large # fails on i386 because of bug 205446\n");
+#else
 	test_large();
 	printf("ok 6 - ctrig large\n");
+#endif
 
 	return (0);
 }



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