aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/cover
AgeCommit message (Expand)Author
2021-03-25cmd/cover: use golang.org/x/tools/cover directlyTobias Klauser
2021-03-15all: run gofmtPrajwal Koirala
2021-03-14cmd/cover: replace code using optimized golang.org/x/tools/coverKoichi Shiraishi
2021-01-21all: introduce and use internal/execabsRoland Shoemaker
2020-12-09all: update to use os.ReadFile, os.WriteFile, os.CreateTemp, os.MkdirTempRuss Cox
2020-08-17all: replace Replace(..., -1) with ReplaceAll(...)Polina Osadcha
2020-04-30cmd/cover: include a package name in the HTML titleRob Pike
2020-04-20cmd/cover: add <title> tag to <head> for coverage report HTML templateDavid Carter
2020-03-13cmd/cover: skip function declarations with blank nameszikaeroh
2019-10-22syscall: respect permission bits on file opening on WindowsJason A. Donenfeld
2019-08-30cmd/cover: skip go list when profile is emptyRhys Hiltner
2019-06-03cmd/cover: fix counting of blocks split by goto statementsAndrew Gerrand
2019-04-15go/token: add IsIdentifier, IsKeyword, and IsExportedDaniel Martí
2019-04-09cmd/cover: rename temporary directory prefix for consistencyMikio Hara
2019-03-15cmd/cover: add go.mod file in lineDupDirBryan C. Mills
2019-03-15cmd/cover: don't assume duplicate positions are in orderIan Lance Taylor
2019-03-12cmd: ensure that GOPATH is always valid in subprocesses that execute 'go build'Bryan C. Mills
2019-03-08internal/testenv: remove SetModVendorBryan C. Mills
2019-03-05all: add -mod=vendor to GOFLAGS in tests that execute 'go' commands within st...Bryan C. Mills
2019-02-20cmd/cover: fix TestHtmlUnformatted in module modeBryan C. Mills
2018-12-18cmd/cover: avoid repeating positionsIan Lance Taylor
2018-12-18cmd/cover: use -toolexec in tests to run newly built cover programIan Lance Taylor
2018-12-11cmd/cover: simplify and correct isValidIdentifierIan Lance Taylor
2018-12-10cmd/cover: check that the argument of -var is validAndrea Nodari
2018-12-06cmd/cover: run tests in parallel, don't change source directoryIan Lance Taylor
2018-08-22cmd/cover: fix off-by-one error in TestCoverHTMLTobias Klauser
2018-08-20cmd/cover: remove unused global var and the unquote functionYury Smolsky
2018-07-10cmd/cover: invoke go command to find packagesRuss Cox
2018-06-18cmd/cover: fix off-by-one in test error messageRob Pike
2018-06-14cmd/cover: remove use of diff in cover_test.goRob Pike
2018-06-08cmd/cover: fix TestCoverHTML on Plan 9David du Colombier
2018-06-08cmd/cover: fix test on SolarisDavid Symonds
2018-06-07cmd/cover: fix sorting of profile segment boundaries, againDavid Symonds
2018-06-07cmd/cover: add test for HTML outputDavid Symonds
2018-05-28cmd/cover: fix sorting of profile segment boundariesDavid Symonds
2018-03-26all: use strings.Builder instead of bytes.Buffer where appropriateBrad Fitzpatrick
2018-03-07cmd/cover: don't crash on non-gofmt'ed inputIan Lance Taylor
2017-11-16cmd/cover: do not report coverage for assembly functionsRuss Cox
2017-11-16cmd/cover: add //line comment pointing to original fileRuss Cox
2017-11-13cmd/cover: modify source as text, not as ASTRuss Cox
2017-10-17cmd/cover: don't try to attach directives to synthetic declsJay Conrod
2017-10-16cmd/cover: preserve compiler directives in floating commentsJay Conrod
2017-10-06cmd/asm, cmd/cgo, cmd/compile, cmd/cover, cmd/link: use standard -V outputRuss Cox
2017-06-02cmd/cover: take default value of total only once.Dhananjay Nakrani
2016-12-20cmd/cover: fix spelling mistakeKevin Burke
2016-12-20cmd/cover: retain un-attached compiler directivesDhananjay Nakrani
2016-11-18cmd/cover: handle multiple samples from the same locationKeith Randall
2016-11-17cmd/cover: don't ignore os.Create errorDaniel Martí
2016-11-03cmd/cover: change covered block for switch/select case to exclude expressionRuss Cox
2016-10-14cmd/cover: handle gotosRob Pike