diff options
author | ngie <ngie@FreeBSD.org> | 2015-12-27 11:12:09 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-12-27 11:12:09 +0000 |
commit | 6e67341ec386823edc36829422bb329dc0d8c00c (patch) | |
tree | 521338589d005c013342b4105a1af05db41ea1f1 /tools/regression | |
parent | b8f4d2f02a0d97bff112a1648a2343b73356c868 (diff) | |
download | FreeBSD-src-6e67341ec386823edc36829422bb329dc0d8c00c.zip FreeBSD-src-6e67341ec386823edc36829422bb329dc0d8c00c.tar.gz |
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
Diffstat (limited to 'tools/regression')
-rw-r--r-- | tools/regression/lib/msun/test-fma.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/regression/lib/msun/test-fma.c b/tools/regression/lib/msun/test-fma.c index 1fcf889..f040b4e 100644 --- a/tools/regression/lib/msun/test-fma.c +++ b/tools/regression/lib/msun/test-fma.c @@ -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++) { |