aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2014-02-15 22:09:35 -0700
committerBen Johnson <benbjohnson@yahoo.com>2014-02-15 22:09:35 -0700
commit3f0daf11ca5f232baa9a891b4301822d2b0cbeeb (patch)
tree057b2bf9d7487343f477f62726919421dc66b6b6 /Makefile
parentMerge pull request #32 from benbjohnson/blocks (diff)
parentAdd parallel usage test and race detector. (diff)
downloaddedo-3f0daf11ca5f232baa9a891b4301822d2b0cbeeb.tar.gz
dedo-3f0daf11ca5f232baa9a891b4301822d2b0cbeeb.tar.xz
Merge pull request #34 from benbjohnson/multithreading
Race Detection
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a7cd5e7..a6ad051 100644
--- a/Makefile
+++ b/Makefile
@@ -14,6 +14,11 @@ fmt:
@go fmt ./...
test: fmt
+ @echo "=== TESTS ==="
@go test -v -cover -test.run=$(TEST)
+ @echo ""
+ @echo ""
+ @echo "=== RACE DETECTOR ==="
+ @go test -v -race -test.run=Parallel
.PHONY: bench cover fmt test