diff options
-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 | ||