summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbluhm <bluhm@openbsd.org>2018-12-03 22:30:04 +0000
committerbluhm <bluhm@openbsd.org>2018-12-03 22:30:04 +0000
commit70126ca4922f127a701b970592a6a3a93338824d (patch)
treecf887a222e8cc3fbe7ef687fbd15bd2a1c7d62a4
parentPerform forward-confirmed reverse DNS verification on incoming connections. (diff)
downloadwireguard-openbsd-70126ca4922f127a701b970592a6a3a93338824d.tar.xz
wireguard-openbsd-70126ca4922f127a701b970592a6a3a93338824d.zip
If a regress uses REGRESS_SKIP_TARGETS to skip part of its tests,
print SKIPPED. This helps to detect such incomplete tests. OK anton@
-rw-r--r--share/mk/bsd.regress.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/share/mk/bsd.regress.mk b/share/mk/bsd.regress.mk
index 09d397a8e38..8cdac28484c 100644
--- a/share/mk/bsd.regress.mk
+++ b/share/mk/bsd.regress.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: bsd.regress.mk,v 1.16 2018/10/05 11:15:29 bluhm Exp $
+# $OpenBSD: bsd.regress.mk,v 1.17 2018/12/03 22:30:04 bluhm Exp $
# Documented in bsd.regress.mk(5)
# No man pages for regression tests.
@@ -100,6 +100,7 @@ regress: .SILENT
.for RT in ${REGRESS_TARGETS} ${REGRESS_CLEANUP}
. if ${REGRESS_SKIP_TARGETS:M${RT}}
@echo -n "SKIP " ${_REGRESS_OUT}
+ @echo SKIPPED
. else
# XXX - we need a better method to see if a test fails due to timeout or just
# normal failure.