blob: ddaae786038bfa5d7753914683333779262247ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# $OpenBSD: Makefile,v 1.2 2020/04/01 15:26:53 claudio Exp $
PROG= sigabrt
NOMAN= yes
run-regress-${PROG}: ${PROG}
rm -f ./${PROG}.core
ulimit -c unlimited && if ./${PROG}; then false; else true; fi
if [ ! -e ./${PROG}.core ]; then echo "No coredump"; false; fi
./${PROG} | diff -I OpenBSD -u ${.CURDIR}/${PROG}.out -
.include <bsd.regress.mk>
|