mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
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:
parent
50190e4b5c
commit
54a00b864c
1 changed files with 6 additions and 0 deletions
|
|
@ -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++) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue