aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2014-04-07 16:24:51 -0600
committerBen Johnson <benbjohnson@yahoo.com>2014-04-11 12:36:54 -0600
commit698b07b074dc554578ecddd138972702f46d0879 (patch)
treef171f10bd4f17986cb9120d71263995b28273a7a /Makefile
parentUpdate cursor benchmark. (diff)
downloaddedo-698b07b074dc554578ecddd138972702f46d0879.tar.gz
dedo-698b07b074dc554578ecddd138972702f46d0879.tar.xz
Add nested buckets.
This commit adds the ability to create buckets inside of other buckets. It also replaces the buckets page with a root bucket. Fixes #56.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2d0fd3f..a87d406 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,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)
@@ -32,6 +32,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