Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Has anyone succeeded in generating code coverage for Go unit tests? I can't find a tool for that on the web.

share|improve this question

1 Answer

up vote 6 down vote accepted

It's right here, some docs here.

$ go tool
6a
6c
6g
6l
addr2line
api
cgo
cov
dist
ebnflint
fix
gotype
nm
objdump
pack
pprof
prof
vet
yacc
$ go tool cov -h
usage: cov [-lsv] [-g substring] [-m minlines] [6.out args...]
-g specifies pattern of interesting functions or files
go tool cov: exit status 1
$

I haven't used it, this is all I know.

share|improve this answer
do you have to install it manually? in my local go installation (go version go1) it is not there. – oers May 9 '12 at 13:39
I believe it gets build by ./all.bash. I cannot verify ATM, I'm not at release as I have a CL pending, but the cov binary time stamp I see in ~/go/pkg/tool/linux_amd64 matches my last Go build of yesterday. – jnml May 9 '12 at 13:47
Yes, run ./all.bash and you will have it. Thanks for the help, jnml! – George Acev May 9 '12 at 14:10
I have some problems running it on my x86 machine. I tried changing main.c as mentioned in this thread: groups.google.com/group/golang-dev/browse_thread/thread/… But it generates a runtime error in another location. I will try it on a 64 bit machine. – George Acev May 9 '12 at 14:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.