blob: 56286feec9229912146cc859bbe975cd8e12d5b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.1 2014/10/31 14:10:55 jsing Exp $
GO_VERSION != sh -c "(go version) 2>/dev/null || true"
.if empty(GO_VERSION)
regress:
@echo golang is required for this regress... skipping
.endif
REGRESS_TARGETS=regress-gotls
regress-gotls:
cd ${.CURDIR} && go test -test.v .
.include <bsd.regress.mk>
|