Date: Sun, 27 Dec 2015 11:12:09 +0000 (UTC) From: Garrett Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r292769 - stable/10/tools/regression/lib/msun Message-ID: <201512271112.tBRBC9dp015769@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Sun Dec 27 11:12:09 2015 New Revision: 292769 URL: https://svnweb.freebsd.org/changeset/base/292769 Log: MFC r292493: Don't run test-fma on i386 It completely fails all assertions on i386 on both stable/9 and stable/10 PR: 205448 X-MFC to: stable/10 Sponsored by: EMC / Isilon Storage Division Modified: stable/10/tools/regression/lib/msun/test-fma.c Directory Properties: stable/10/ (props changed) Modified: stable/10/tools/regression/lib/msun/test-fma.c ============================================================================== --- stable/10/tools/regression/lib/msun/test-fma.c Sun Dec 27 11:04:11 2015 (r292768) +++ stable/10/tools/regression/lib/msun/test-fma.c Sun Dec 27 11:12:09 2015 (r292769) @@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$"); #include <float.h> #include <math.h> #include <stdio.h> +#include <stdlib.h> #include "test-utils.h" @@ -475,6 +476,11 @@ main(int argc, char *argv[]) int rmodes[] = { FE_TONEAREST, FE_UPWARD, FE_DOWNWARD, FE_TOWARDZERO }; int i; +#if defined(__i386__) + printf("1..0 # SKIP all testcases fail on i386\n"); + exit(0); +#endif + printf("1..19\n"); for (i = 0; i < 4; i++) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512271112.tBRBC9dp015769>