summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkettenis <>2020-10-18 17:40:06 +0000
committerkettenis <>2020-10-18 17:40:06 +0000
commit39bbf81c290f611941d70fbfc53ce61594951430 (patch)
tree0717b239729390227f3a3a5259f6dcfa6513ec1c
parente18ce3cc8370c89ce17e02e2d236ce238bd6c446 (diff)
downloadopenbsd-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/Makefile7
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
3PROG=except 3PROG=except
4 4
5REGRESS_TARGETS+= fltdiv fltinv fltovf fltund 5REGRESS_TARGETS+= fltdiv fltinv fltovf fltund
6 6
7.if ${MACHINE} == arm64 || ${MACHINE} == armv7
8# Floating-point exceptions are optional and absent on most hardware
9REGRESS_EXPECTED_FAILURES+= fltdiv fltinv fltovf fltund
10.endif
11
7fltdiv: ${PROG} 12fltdiv: ${PROG}
8 ./${PROG} fltdiv 13 ./${PROG} fltdiv
9 14