aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSteven Normore <snormore@gmail.com>2014-04-14 15:45:44 +0000
committerBen Johnson <benbjohnson@yahoo.com>2014-04-18 21:44:47 -0500
commit105fece47a108f73bd18128af0403acbe8228d36 (patch)
tree58b611f5863d4cb732f014779f8f3347491ca7af /Makefile
parentadd benchmarks using Benchmark framework (diff)
downloaddedo-105fece47a108f73bd18128af0403acbe8228d36.tar.gz
dedo-105fece47a108f73bd18128af0403acbe8228d36.tar.xz
add bench sub-package
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 81beac3..0ed5996 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ COMMIT=`git rev-parse --short HEAD`
GOLDFLAGS="-X main.branch $(BRANCH) -X main.commit $(COMMIT)"
bench:
- go test -v -test.bench=$(BENCH)
+ go test -v -test.run=NOTHINCONTAINSTHIS -test.bench=$(BENCH)
# http://cloc.sourceforge.net/
cloc:
@@ -24,7 +24,7 @@ cpuprofile: fmt
# go get github.com/kisielk/errcheck
errcheck:
@echo "=== errcheck ==="
- @errcheck github.com/boltdb/bolt
+ @.go/bin/errcheck github.com/boltdb/bolt
fmt:
@go fmt ./...