diff options
Diffstat (limited to 'regress/lib/libc/ieeefp/except/Makefile')
-rw-r--r-- | regress/lib/libc/ieeefp/except/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/regress/lib/libc/ieeefp/except/Makefile b/regress/lib/libc/ieeefp/except/Makefile index 205331548f2..cf73841c4ea 100644 --- a/regress/lib/libc/ieeefp/except/Makefile +++ b/regress/lib/libc/ieeefp/except/Makefile @@ -1,9 +1,14 @@ -# $OpenBSD: Makefile,v 1.5 2004/07/22 19:29:42 kettenis Exp $ +# $OpenBSD: Makefile,v 1.6 2020/10/18 17:40:06 kettenis Exp $ PROG=except REGRESS_TARGETS+= fltdiv fltinv fltovf fltund +.if ${MACHINE} == arm64 || ${MACHINE} == armv7 +# Floating-point exceptions are optional and absent on most hardware +REGRESS_EXPECTED_FAILURES+= fltdiv fltinv fltovf fltund +.endif + fltdiv: ${PROG} ./${PROG} fltdiv |