diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,7 +13,7 @@ cloc: @cloc --not-match-f='Makefile|_test.go' . cover: fmt - go test -coverprofile=$(COVERPROFILE) -test.run=$(TEST) . + go test -coverprofile=$(COVERPROFILE) -test.run=$(TEST) $(COVERFLAG) . go tool cover -html=$(COVERPROFILE) rm $(COVERPROFILE) @@ -47,6 +47,6 @@ test: fmt errcheck @echo "" @echo "" @echo "=== RACE DETECTOR ===" - @go test -v -race -test.run=Parallel + @go test -v -race -test.run="TestSimulate_(100op|1000op|10000op)" .PHONY: bench cloc cover cpuprofile fmt memprofile test |