summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/setjmp-fpu/Makefile
diff options
context:
space:
mode:
authorbluhm <>2020-01-13 14:58:38 +0000
committerbluhm <>2020-01-13 14:58:38 +0000
commit996be56cf768b80e4785865e699cef34a00a6000 (patch)
treeb5804ea3ccdb375c0f26e1b98ed973b8754149c5 /src/regress/lib/libc/setjmp-fpu/Makefile
parent23772d25ea2d9f0c22b6fcc0ea8e281694436352 (diff)
downloadopenbsd-996be56cf768b80e4785865e699cef34a00a6000.tar.gz
openbsd-996be56cf768b80e4785865e699cef34a00a6000.tar.bz2
openbsd-996be56cf768b80e4785865e699cef34a00a6000.zip
Split setjmp-fpu regress into separate tests. Use errx(3) to explain
potential problems. Regress still failing on amd64.
Diffstat (limited to 'src/regress/lib/libc/setjmp-fpu/Makefile')
-rw-r--r--src/regress/lib/libc/setjmp-fpu/Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/regress/lib/libc/setjmp-fpu/Makefile b/src/regress/lib/libc/setjmp-fpu/Makefile
index 33d0f7e88a..7b9fae5f5f 100644
--- a/src/regress/lib/libc/setjmp-fpu/Makefile
+++ b/src/regress/lib/libc/setjmp-fpu/Makefile
@@ -1,8 +1,14 @@
1# $OpenBSD: Makefile,v 1.2 2013/12/29 05:46:43 martynas Exp $ 1# $OpenBSD: Makefile,v 1.3 2020/01/13 14:58:38 bluhm Exp $
2 2
3PROG= setjmp-fpu 3PROGS= _setjmp setjmp sigsetjmp
4SRCS= _setjmp.c main.c setjmp.c sigsetjmp.c
5 4
6LDADD= -lm 5LDADD= -lm
7 6
7.for p in ${PROGS}
8REGRESS_TARGETS += run-$p
9run-$p: $p
10 @echo '======== $@ ========'
11 ./$p
12.endfor
13
8.include <bsd.regress.mk> 14.include <bsd.regress.mk>