summaryrefslogtreecommitdiff
path: root/src/cmd/cov
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý5-0/+845
2011-09-13Imported Upstream version 60Ondřej Surý5-845/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-3/+0
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý2-9/+15
2010-04-01runtime: turn run time errors checks into panicsRuss Cox1-2/+2
R=ken2, r CC=golang-dev http://codereview.appspot.com/871042 Committer: Russ Cox <rsc@golang.org>
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-2/+2
the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
2009-11-17FreeBSD-specific porting work.Devon H. O'Dell1-0/+1
cgo/libmach remain unimplemented. However, compilers, runtime, and packages are 100%. I still need to go through and implement missing syscalls (at least make sure they're all listed), but for all shipped functionality, this is done. Ship! ;) R=rsc, VenkateshSrinivas http://codereview.appspot.com/152142 Committer: Russ Cox <rsc@golang.org>
2009-11-04doc doc docRuss Cox1-0/+33
R=r http://go/go-review/1016039
2009-10-22fix build after Mercurial move.Russ Cox2-9/+5
various missing or incorrect files. R=r CC=go-dev http://go/go-review/1014004
2009-10-03clean moreRuss Cox1-1/+1
R=r DELTA=40 (9 added, 3 deleted, 28 changed) OCL=35277 CL=35305
2009-09-22use $(shell uname) instead of $GOOS whenRuss Cox1-1/+1
deciding what the host process support is. this makes a cross-compiling (e.g., GOOS=nacl) build still generate valid host debugger binaries. R=r DELTA=5 (0 added, 0 deleted, 5 changed) OCL=34878 CL=34889
2009-08-14rename libmach_amd64 libmachRob Pike2-2/+2
R=rsc OCL=33273 CL=33276
2009-07-28Support use of $GOBINDIR to override $HOME/binPhil Pennock1-1/+1
R=r,gri,rsc APPROVED=rsc DELTA=53 (12 added, 6 deleted, 35 changed) OCL=31822 CL=32282
2008-11-20new flags to 6covRuss Cox1-11/+67
-s print source lines -n x don't print about sections < x lines long. R=r DELTA=69 (57 added, 1 deleted, 11 changed) OCL=19697 CL=19708
2008-11-19coverage tweaksRuss Cox1-4/+24
* handle new 6g shift sequence * assume 6.out R=r DELTA=24 (20 added, 0 deleted, 4 changed) OCL=19593 CL=19596
2008-11-18add build step to install debuggers setgid procmod.Russ Cox1-1/+8
they have to go in /usr/local/bin because the setgid bit is ignored in /Users. R=r DELTA=54 (49 added, 0 deleted, 5 changed) OCL=19424 CL=19463
2008-11-17work around more commonly-unreachable 6g code sequences.Russ Cox1-0/+23
R=r DELTA=23 (23 added, 0 deleted, 0 changed) OCL=19405 CL=19420
2008-11-14code coverage toolRuss Cox4-0/+706
$ 6cov -g 235.go 6.out 235.go:62,62 main·main 0x27c9-0x2829 MOVL $main·.stringo(SB),AX 235.go:30,30 main·main 0x2856-0x285e ADDQ $6c0,SP $ and assorted fixes. R=r DELTA=743 (732 added, 8 deleted, 3 changed) OCL=19226 CL=19243