Don't run test-fma on i386

It completely fails all assertions on i386 on both stable/9 and stable/10

PR: 205448
MFC after: 1 week
X-MFC to: stable/10
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2015-12-20 04:32:30 +00:00
parent 50190e4b5c
commit 54a00b864c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=292493

View File

@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$");
#include <float.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include "test-utils.h"
@ -476,6 +477,11 @@ main(int argc, char *argv[])
int rmodes[] = { FE_TONEAREST, FE_UPWARD, FE_DOWNWARD, FE_TOWARDZERO };
int i, j;
#if defined(__i386__)
printf("1..0 # SKIP all testcases fail on i386\n");
exit(0);
#endif
printf("1..19\n");
for (i = 0; i < nitems(rmodes); i++, j++) {