1# $OpenBSD: Makefile,v 1.4 2021/02/09 16:58:00 claudio Exp $ 2 3PROG= syscall_main 4 5run-regress-${PROG}: ${PROG} 6 rm -f ${PROG}.core 7 ulimit -c unlimited && ! ./${PROG} 8 if [ ! -e ${PROG}.core ]; then echo "No coredump"; false; fi 9 10.include <bsd.regress.mk> 11