diff options
author | bluhm <> | 2020-01-13 14:58:38 +0000 |
---|---|---|
committer | bluhm <> | 2020-01-13 14:58:38 +0000 |
commit | 996be56cf768b80e4785865e699cef34a00a6000 (patch) | |
tree | b5804ea3ccdb375c0f26e1b98ed973b8754149c5 /src/regress/lib/libc/setjmp-fpu/Makefile | |
parent | 23772d25ea2d9f0c22b6fcc0ea8e281694436352 (diff) | |
download | openbsd-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/Makefile | 12 |
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 | ||
3 | PROG= setjmp-fpu | 3 | PROGS= _setjmp setjmp sigsetjmp |
4 | SRCS= _setjmp.c main.c setjmp.c sigsetjmp.c | ||
5 | 4 | ||
6 | LDADD= -lm | 5 | LDADD= -lm |
7 | 6 | ||
7 | .for p in ${PROGS} | ||
8 | REGRESS_TARGETS += run-$p | ||
9 | run-$p: $p | ||
10 | @echo '======== $@ ========' | ||
11 | ./$p | ||
12 | .endfor | ||
13 | |||
8 | .include <bsd.regress.mk> | 14 | .include <bsd.regress.mk> |