diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2002-04-16 12:00:15 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2002-04-16 12:00:15 +0000 |
commit | ea13d77ca17247e69ee5c2724d9671e5731185b0 (patch) | |
tree | 9049953a09bd214c7217cc7ef6706ff8b139aaf8 /regress/usr.bin/make/Makefile | |
parent | c00e6c5957befb646dbd2d5bb8214cf9721eb671 (diff) |
Stumbled upon a very inefficient construct by mistake...
Enter it as a regression test, so it can get fixed.
Diffstat (limited to 'regress/usr.bin/make/Makefile')
-rw-r--r-- | regress/usr.bin/make/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/regress/usr.bin/make/Makefile b/regress/usr.bin/make/Makefile index 4068f1e2571..4adb262be68 100644 --- a/regress/usr.bin/make/Makefile +++ b/regress/usr.bin/make/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.15 2002/02/26 16:54:47 espie Exp $ +# $OpenBSD: Makefile,v 1.16 2002/04/16 12:00:14 espie Exp $ # We don't pass t7, t13, t14... -REGRESSTARGETS=t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t13 t14 t15 +REGRESSTARGETS=t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t13 t14 t15 t16 MALLOC_OPTIONS?=AZJ t1: t1.out @@ -72,6 +72,9 @@ t15: touch t15file cd ${.CURDIR} && ulimit -t 2 && env -i PATH=${PATH} MALLOC_OPTIONS=${MALLOC_OPTIONS} ${MAKE} -r -f mk15 2>/dev/null +t16: + cd ${.CURDIR} && env -i PATH=${PATH} MALLOC_OPTIONS=${MALLOC_OPTIONS} ${MAKE} -r -f mk16 + z.a: touch $@ |