diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-08-01 21:26:31 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-08-01 21:26:31 +0000 |
commit | 25ac62ad0dec8a89c4802a817777d6eb086aef7b (patch) | |
tree | 12736c9ef7e69c55329b3ae7d86b642888c383b4 /regress/usr.bin/Makefile | |
parent | 0087d1d6d09175d5f26adcdd5819f261b1c29232 (diff) |
Some tests are currently failing. Only run those if the REGRESS_FULL
variable is set.
Diffstat (limited to 'regress/usr.bin/Makefile')
-rw-r--r-- | regress/usr.bin/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/regress/usr.bin/Makefile b/regress/usr.bin/Makefile index 000ce8109fe..65011b8ee0e 100644 --- a/regress/usr.bin/Makefile +++ b/regress/usr.bin/Makefile @@ -1,9 +1,12 @@ -# $OpenBSD: Makefile,v 1.26 2012/07/28 19:07:07 guenther Exp $ +# $OpenBSD: Makefile,v 1.27 2013/08/01 21:26:30 kettenis Exp $ # $NetBSD: Makefile,v 1.1 1997/12/30 23:27:11 cgd Exp $ -SUBDIR+= basename bc cap_mkdb dc diff diff3 dirname file grep gzip gzsig -SUBDIR+= libtool -SUBDIR+= m4 make mandoc patch pkg-config rcs sdiff sed sort ssh tsort +SUBDIR+= basename bc dc diff diff3 dirname file grep gzip gzsig +SUBDIR+= m4 mandoc sdiff sed sort tsort SUBDIR+= xargs +.if defined(REGRESS_FULL) +SUBDIR+= cap_mkdb libtool make patch pkg-config rcs ssh +.endif + .include <bsd.subdir.mk> |