blob: 404aa79caa89d129f14a1ca508ff694382ee145e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $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 package go is required for this regress
@echo SKIPPED
.endif
REGRESS_TARGETS=regress-gotls
regress-gotls:
cd ${.CURDIR} && go test -test.v .
.include <bsd.regress.mk>
|