diff --git a/GNUmakefile b/GNUmakefile index f4baed39bc..f621864c0d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -48,8 +48,7 @@ cov: test: dev go test -tags "$(GOTAGS)" -i -run '^$$' ./... - go test -tags "$(GOTAGS)" -v $$(go list ./... | egrep -v '(consul/consul|vendor)') > test.log 2>&1 || true - go test -tags "$(GOTAGS)" -v github.com/hashicorp/consul/consul >> test.log 2>&1 || true + go test -tags "$(GOTAGS)" -v ./... > test.log 2>&1 || true @if [ "$$TRAVIS" == "true" ] ; then cat test.log ; fi @if grep -q 'FAIL:' test.log ; then grep 'FAIL:' test.log ; exit 1 ; else echo 'PASS' ; fi