test: capture stderr in test.log

This commit is contained in:
Frank Schroeder 2017-05-21 17:20:24 +02:00
parent 35f7e3cbe0
commit 5f1bd2aec0
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ cov:
test: dev
go test -tags "$(GOTAGS)" -i -run '^$$' ./...
( set -o pipefail ; go test -tags "$(GOTAGS)" -v ./... | tee test.log )
( set -o pipefail ; go test -tags "$(GOTAGS)" -v ./... 2>&1 | tee test.log )
cover:
go test $(GOFILES) --cover