summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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