diff options
author | kettenis <> | 2020-10-18 17:40:06 +0000 |
---|---|---|
committer | kettenis <> | 2020-10-18 17:40:06 +0000 |
commit | 39bbf81c290f611941d70fbfc53ce61594951430 (patch) | |
tree | 0717b239729390227f3a3a5259f6dcfa6513ec1c | |
parent | e18ce3cc8370c89ce17e02e2d236ce238bd6c446 (diff) | |
download | openbsd-39bbf81c290f611941d70fbfc53ce61594951430.tar.gz openbsd-39bbf81c290f611941d70fbfc53ce61594951430.tar.bz2 openbsd-39bbf81c290f611941d70fbfc53ce61594951430.zip |
XFAIL tests on arm64 and armv7 as floating-point exception support is
optional and isn't implemented on most hardware.
-rw-r--r-- | src/regress/lib/libc/ieeefp/except/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/regress/lib/libc/ieeefp/except/Makefile b/src/regress/lib/libc/ieeefp/except/Makefile index 205331548f..cf73841c4e 100644 --- a/src/regress/lib/libc/ieeefp/except/Makefile +++ b/src/regress/lib/libc/ieeefp/except/Makefile | |||
@@ -1,9 +1,14 @@ | |||
1 | # $OpenBSD: Makefile,v 1.5 2004/07/22 19:29:42 kettenis Exp $ | 1 | # $OpenBSD: Makefile,v 1.6 2020/10/18 17:40:06 kettenis Exp $ |
2 | 2 | ||
3 | PROG=except | 3 | PROG=except |
4 | 4 | ||
5 | REGRESS_TARGETS+= fltdiv fltinv fltovf fltund | 5 | REGRESS_TARGETS+= fltdiv fltinv fltovf fltund |
6 | 6 | ||
7 | .if ${MACHINE} == arm64 || ${MACHINE} == armv7 | ||
8 | # Floating-point exceptions are optional and absent on most hardware | ||
9 | REGRESS_EXPECTED_FAILURES+= fltdiv fltinv fltovf fltund | ||
10 | .endif | ||
11 | |||
7 | fltdiv: ${PROG} | 12 | fltdiv: ${PROG} |
8 | ./${PROG} fltdiv | 13 | ./${PROG} fltdiv |
9 | 14 | ||