blob: e035e63adcd7dcf05d4ba6226628b98845cc8adf [file] [log] [blame]
sslobodrd046be82019-01-16 10:02:22 -05001BRANCH=`git rev-parse --abbrev-ref HEAD`
2COMMIT=`git rev-parse --short HEAD`
3GOLDFLAGS="-X main.branch $(BRANCH) -X main.commit $(COMMIT)"
4
5default: build
6
7race:
8 @go test -v -race -test.run="TestSimulate_(100op|1000op)"
9
10# go get github.com/kisielk/errcheck
11errcheck:
12 @errcheck -ignorepkg=bytes -ignore=os:Remove github.com/boltdb/bolt
13
14test:
15 @go test -v -cover .
16 @go test -v ./cmd/bolt
17
18.PHONY: fmt test