From: bluhm Date: Sat, 8 Jul 2017 00:08:26 +0000 (+0000) Subject: Run malloc0test with all possible malloc options. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b15df39de97995ff08451106c5c7429b44460109;p=openbsd Run malloc0test with all possible malloc options. --- diff --git a/regress/lib/libc/malloc/malloc0test/Makefile b/regress/lib/libc/malloc/malloc0test/Makefile index 8ed8163a790..fc2295c091b 100644 --- a/regress/lib/libc/malloc/malloc0test/Makefile +++ b/regress/lib/libc/malloc/malloc0test/Makefile @@ -1,5 +1,11 @@ -# $OpenBSD: Makefile,v 1.1 2003/07/15 10:09:37 otto Exp $ +# $OpenBSD: Makefile,v 1.2 2017/07/08 00:08:26 bluhm Exp $ PROG= malloc0test +.for m in C D F G J j R S U X << >>> +REGRESS_TARGETS += run-regress-${PROG}-${m:S//+/g} +run-regress-${PROG}-${m:S//+/g}: ${PROG} + MALLOC_OPTIONS='${m}' ./${PROG} +.endfor + .include