aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2014-02-09 15:52:19 -0700
committerBen Johnson <benbjohnson@yahoo.com>2014-02-10 14:04:01 -0700
commit509e93dff4cedf88d91ba2c99385da0b4e41eb6a (patch)
treeb6dc2efd0908df4ca7ff270181e46a1e4d85a77c /Makefile
parentClean up. (diff)
downloaddedo-509e93dff4cedf88d91ba2c99385da0b4e41eb6a.tar.gz
dedo-509e93dff4cedf88d91ba2c99385da0b4e41eb6a.tar.xz
Add freelist.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index decd960..a7cd5e7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,3 @@
-PKG=./...
TEST=.
BENCH=.
COVERPROFILE=/tmp/c.out
@@ -7,7 +6,7 @@ bench: benchpreq
go test -v -test.bench=$(BENCH) ./.bench
cover: fmt
- go test -coverprofile=$(COVERPROFILE) .
+ go test -coverprofile=$(COVERPROFILE) -test.run=$(TEST) .
go tool cover -html=$(COVERPROFILE)
rm $(COVERPROFILE)
@@ -15,6 +14,6 @@ fmt:
@go fmt ./...
test: fmt
- @go test -v -cover -test.run=$(TEST) $(PKG)
+ @go test -v -cover -test.run=$(TEST)
.PHONY: bench cover fmt test