svn commit: r292769 - stable/10/tools/regression/lib/msun
Garrett Cooper
ngie at FreeBSD.org
Sun Dec 27 11:12:10 UTC 2015
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++) {
More information about the svn-src-stable-10
mailing list