summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbluhm <>2016-09-02 21:30:34 +0000
committerbluhm <>2016-09-02 21:30:34 +0000
commitd30dcab35f480881e157864f13df2fa1edfaf179 (patch)
treeedc02360731b18fca59996d687d2cbba90d537d8 /src
parentb31711d05313b5cda9eade326e32e2e41369ac17 (diff)
downloadopenbsd-d30dcab35f480881e157864f13df2fa1edfaf179.tar.gz
openbsd-d30dcab35f480881e157864f13df2fa1edfaf179.tar.bz2
openbsd-d30dcab35f480881e157864f13df2fa1edfaf179.zip
Print SKIPPED if a regress test cannot be executed for some reason.
This allows to identify such tests by looking at their output.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libtls/gotls/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/regress/lib/libtls/gotls/Makefile b/src/regress/lib/libtls/gotls/Makefile
index 56286feec9..404aa79caa 100644
--- a/src/regress/lib/libtls/gotls/Makefile
+++ b/src/regress/lib/libtls/gotls/Makefile
@@ -1,10 +1,11 @@
1# $OpenBSD: Makefile,v 1.1 2014/10/31 14:10:55 jsing Exp $ 1# $OpenBSD: Makefile,v 1.2 2016/09/02 21:30:34 bluhm Exp $
2 2
3GO_VERSION != sh -c "(go version) 2>/dev/null || true" 3GO_VERSION != sh -c "(go version) 2>/dev/null || true"
4 4
5.if empty(GO_VERSION) 5.if empty(GO_VERSION)
6regress: 6regress:
7 @echo golang is required for this regress... skipping 7 @echo package go is required for this regress
8 @echo SKIPPED
8.endif 9.endif
9 10
10REGRESS_TARGETS=regress-gotls 11REGRESS_TARGETS=regress-gotls