diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2018-01-15 20:38:48 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2018-01-15 20:38:48 +0000 |
commit | 0d85f15a09ec1e4a324d4f731289caa46b9dbce0 (patch) | |
tree | fcef456cd0deab55587019c69e10066d13a13ea4 /share/mk/bsd.regress.mk | |
parent | 6a85d5650bdbcc31ea060c28ac4e1388eec800a6 (diff) |
We have no deprecated regress variables in our tree. Remove the
compatibility layer.
Diffstat (limited to 'share/mk/bsd.regress.mk')
-rw-r--r-- | share/mk/bsd.regress.mk | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/share/mk/bsd.regress.mk b/share/mk/bsd.regress.mk index 0b8aa4c30dc..838050d32c9 100644 --- a/share/mk/bsd.regress.mk +++ b/share/mk/bsd.regress.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.regress.mk,v 1.13 2014/07/19 18:15:53 miod Exp $ +# $OpenBSD: bsd.regress.mk,v 1.14 2018/01/15 20:38:47 bluhm Exp $ # Documented in bsd.regress.mk(5) # No man pages for regression tests. @@ -17,22 +17,6 @@ NOPROG= .MAIN: all all: regress -# Check for deprecated REGRESS* variables and assign them to the -# new versions if the new version is not already defined. -_REGRESS_DEPRECATED=LOG:LOG SKIPTARGETS:SKIP_TARGETS SKIPSLOW:SKIP_SLOW \ - SKIP:SKIP TARGETS:TARGETS MAXTIME:MAXTIME ROOTTARGETS:ROOT_TARGETS - -.for _I in ${_REGRESS_DEPRECATED} -_REGRESS_OLD=REGRESS${_I:C/\:.*//} -_REGRESS_NEW=REGRESS_${_I:C/.*\://} -. if defined(${_REGRESS_OLD}) -ERRORS:= ${ERRORS} "Warning: ${_REGRESS_OLD} is deprecated, use ${_REGRESS_NEW} instead." -. if !defined(${_REGRESS_NEW}) -${_REGRESS_NEW}:=${${_REGRESS_OLD}} -. endif -. endif -.endfor - # XXX - Need full path to REGRESS_LOG, otherwise there will be much pain. REGRESS_LOG?=/dev/null REGRESS_SKIP_TARGETS?= |