the tests with ulimit -c unlimited to make sure coredumps are written.
OK bluhm@ deraadt@
-# $OpenBSD: Makefile,v 1.3 2020/10/16 21:34:59 bluhm Exp $
+# $OpenBSD: Makefile,v 1.4 2021/02/09 16:58:00 claudio Exp $
PROG= syscall_library
.if ${.CURDIR} == ${.OBJDIR}
run-regress-${PROG}: ${PROG}
rm -f ${PROG}.core
- ! LD_LIBRARY_PATH=${LIBDIR} ./${PROG}
+ ulimit -c unlimited && ! LD_LIBRARY_PATH=${LIBDIR} ./${PROG}
if [ ! -e ${PROG}.core ]; then echo "No coredump"; false; fi
.include <bsd.regress.mk>
-# $OpenBSD: Makefile,v 1.3 2020/10/16 21:34:59 bluhm Exp $
+# $OpenBSD: Makefile,v 1.4 2021/02/09 16:58:00 claudio Exp $
PROG= syscall_main
run-regress-${PROG}: ${PROG}
rm -f ${PROG}.core
- ! ./${PROG}
+ ulimit -c unlimited && ! ./${PROG}
if [ ! -e ${PROG}.core ]; then echo "No coredump"; false; fi
.include <bsd.regress.mk>