aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1302aed..cb44a12 100644
--- a/Makefile
+++ b/Makefile
@@ -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