From: miod Date: Sat, 19 Jul 2014 18:15:53 +0000 (+0000) Subject: Explicitely check the value of REGRESS_SKIP_SLOW rather than its emptyness, X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=7ba0111cf99c58657dede5140d248cbaa7666a54;p=openbsd Explicitely check the value of REGRESS_SKIP_SLOW rather than its emptyness, for it defaults to a non-empty value; Doug Hogan --- diff --git a/share/mk/bsd.regress.mk b/share/mk/bsd.regress.mk index dfdd0359a47..0b8aa4c30dc 100644 --- a/share/mk/bsd.regress.mk +++ b/share/mk/bsd.regress.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.regress.mk,v 1.12 2013/08/01 20:43:07 kettenis Exp $ +# $OpenBSD: bsd.regress.mk,v 1.13 2014/07/19 18:15:53 miod Exp $ # Documented in bsd.regress.mk(5) # No man pages for regression tests. @@ -55,7 +55,7 @@ REGRESS_SKIP_TARGETS=run-regress-${PROG} . endif .endif -.if defined(REGRESS_SLOW_TARGETS) && !empty(REGRESS_SKIP_SLOW) +.if defined(REGRESS_SLOW_TARGETS) && ${REGRESS_SKIP_SLOW} != no REGRESS_SKIP_TARGETS+=${REGRESS_SLOW_TARGETS} .endif