diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2016-09-02 21:30:35 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2016-09-02 21:30:35 +0000 |
commit | 574f69a0e4d8ac880ca4b6a3dc2914c6052e318f (patch) | |
tree | 8df806befcdc6f62b718d8ed907ded8b2007e966 /regress/lib/libtls | |
parent | a2e3a8ca16d3a36e252e6b7be3b645a6feaf7266 (diff) |
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 'regress/lib/libtls')
-rw-r--r-- | regress/lib/libtls/gotls/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/regress/lib/libtls/gotls/Makefile b/regress/lib/libtls/gotls/Makefile index 56286feec92..404aa79caa8 100644 --- a/regress/lib/libtls/gotls/Makefile +++ b/regress/lib/libtls/gotls/Makefile @@ -1,10 +1,11 @@ -# $OpenBSD: Makefile,v 1.1 2014/10/31 14:10:55 jsing Exp $ +# $OpenBSD: Makefile,v 1.2 2016/09/02 21:30:34 bluhm Exp $ GO_VERSION != sh -c "(go version) 2>/dev/null || true" .if empty(GO_VERSION) regress: - @echo golang is required for this regress... skipping + @echo package go is required for this regress + @echo SKIPPED .endif REGRESS_TARGETS=regress-gotls |