summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/ieeefp/except/Makefile
blob: 0a16eb762e85d860eaf080e847934e5d36abe278 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#	$OpenBSD: Makefile,v 1.7 2021/06/17 12:55:38 kettenis Exp $

PROG=except

REGRESS_TARGETS+= fltdiv fltinv fltovf fltund

.if ${MACHINE} == arm64 || ${MACHINE} == armv7 || ${MACHINE} == riscv64
# Floating-point exceptions are optional and absent on most hardware
REGRESS_EXPECTED_FAILURES+= fltdiv fltinv fltovf fltund
.endif

fltdiv: ${PROG}
	./${PROG} fltdiv

fltinv: ${PROG}
	./${PROG} fltinv

fltovf: ${PROG}
	./${PROG} fltovf

fltund: ${PROG}
	./${PROG} fltund

.include <bsd.regress.mk>