github.com/cilium/statedb@v0.3.2/Makefile (about) 1 .PHONY: all build test test-race bench 2 3 all: build test test-race bench 4 5 build: 6 go build ./... 7 8 test: 9 go test ./... -cover -vet=all -test.count 1 10 11 test-race: 12 go test -race ./... -test.count 1 13 14 bench: 15 go test ./... -bench . -benchmem -test.run xxx 16 go run ./reconciler/benchmark -quiet 17 18 bench-reconciler: 19 go run ./reconciler/benchmark