Files
priorityq/Makefile
T

12 lines
199 B
Makefile
Raw Normal View History

2023-03-02 21:35:17 -08:00
.PHONY: test
test:
go test -count=1 -coverprofile=coverage ./...
.PHONY: bench
bench:
go test -bench=. ./...
.PHONY: longbench
longbench:
go test -count=30 -bench=. ./... | tee benchresults.txt