diff options
author | bluhm <> | 2016-09-02 21:30:34 +0000 |
---|---|---|
committer | bluhm <> | 2016-09-02 21:30:34 +0000 |
commit | d30dcab35f480881e157864f13df2fa1edfaf179 (patch) | |
tree | edc02360731b18fca59996d687d2cbba90d537d8 /src | |
parent | b31711d05313b5cda9eade326e32e2e41369ac17 (diff) | |
download | openbsd-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/Makefile | 5 |
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 | ||
3 | GO_VERSION != sh -c "(go version) 2>/dev/null || true" | 3 | GO_VERSION != sh -c "(go version) 2>/dev/null || true" |
4 | 4 | ||
5 | .if empty(GO_VERSION) | 5 | .if empty(GO_VERSION) |
6 | regress: | 6 | regress: |
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 | ||
10 | REGRESS_TARGETS=regress-gotls | 11 | REGRESS_TARGETS=regress-gotls |