diff options
Diffstat (limited to 'src/regress/lib/libc/atexit/Makefile')
-rw-r--r-- | src/regress/lib/libc/atexit/Makefile | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/regress/lib/libc/atexit/Makefile b/src/regress/lib/libc/atexit/Makefile deleted file mode 100644 index eb8c55e91e..0000000000 --- a/src/regress/lib/libc/atexit/Makefile +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | # $OpenBSD: Makefile,v 1.7 2017/07/27 15:08:37 bluhm Exp $ | ||
2 | |||
3 | PROG = atexit_test | ||
4 | CPPFLAGS = -I${.CURDIR}/../../../../lib/libc | ||
5 | CLEANFILES = invalid.out valid.out | ||
6 | LDADD = -static | ||
7 | |||
8 | run-regress-${PROG}: ${PROG} | ||
9 | ./${PROG} -valid 2>${.OBJDIR}/valid.out | ||
10 | cmp -s ${.OBJDIR}/valid.out ${.CURDIR}/valid.ok | ||
11 | ./${PROG} -invalid-atexit 2>${.OBJDIR}/invalid.out | ||
12 | cmp -s ${.OBJDIR}/invalid.out ${.CURDIR}/invalid.ok | ||
13 | ./${PROG} -invalid-cleanup 2>${.OBJDIR}/invalid.out | ||
14 | cmp -s ${.OBJDIR}/invalid.out ${.CURDIR}/invalid.ok | ||
15 | |||
16 | .include <bsd.regress.mk> | ||