mirror of https://github.com/etcd-io/bbolt.git
26 lines
799 B
Makefile
26 lines
799 B
Makefile
BRANCH=`git rev-parse --abbrev-ref HEAD`
|
|
COMMIT=`git rev-parse --short HEAD`
|
|
GOLDFLAGS="-X main.branch $(BRANCH) -X main.commit $(COMMIT)"
|
|
|
|
race:
|
|
@TEST_FREELIST_TYPE=hashmap go test -v -race -test.run="TestSimulate_(100op|1000op)"
|
|
@echo "array freelist test"
|
|
@TEST_FREELIST_TYPE=array go test -v -race -test.run="TestSimulate_(100op|1000op)"
|
|
|
|
fmt:
|
|
!(gofmt -l -s -d $(shell find . -name \*.go) | grep '[a-z]')
|
|
|
|
lint:
|
|
golangci-lint run ./...
|
|
|
|
test:
|
|
TEST_FREELIST_TYPE=hashmap go test -timeout 30m -v -coverprofile cover.out -covermode atomic
|
|
TEST_FREELIST_TYPE=hashmap go test -v ./cmd/bbolt
|
|
|
|
@echo "array freelist test"
|
|
|
|
@TEST_FREELIST_TYPE=array go test -timeout 30m -v -coverprofile cover.out -covermode atomic
|
|
@TEST_FREELIST_TYPE=array go test -v ./cmd/bbolt
|
|
|
|
.PHONY: race fmt test lint
|