Browse Source

test: capture stderr in test.log

pull/3037/head
Frank Schroeder 8 years ago
parent
commit
2a39c480b9
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
  1. 2
      GNUmakefile

2
GNUmakefile

@ -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

Loading…
Cancel
Save