testing: use conventional comments for exported internal funcs & structs

Change-Id: I2dd5ddc22bfff143b81d5945992d8c5fccf387f4
GitHub-Last-Rev: aa637756e7
GitHub-Pull-Request: golang/go#36054
Reviewed-on: https://go-review.googlesource.com/c/go/+/210497
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
vovapi 2019-12-10 10:34:34 +00:00 committed by Brad Fitzpatrick
parent 5e35845a4a
commit 207a0b7933
3 changed files with 11 additions and 11 deletions

View file

@ -863,8 +863,8 @@ func (t *T) Parallel() {
t.raceErrors += -race.Errors()
}
// An internal type but exported because it is cross-package; part of the implementation
// of the "go test" command.
// InternalTest is an internal type but exported because it is cross-package;
// it is part of the implementation of the "go test" command.
type InternalTest struct {
Name string
F func(*T)
@ -1214,8 +1214,8 @@ func listTests(matchString func(pat, str string) (bool, error), tests []Internal
}
}
// An internal function but exported because it is cross-package; part of the implementation
// of the "go test" command.
// RunTests is an internal function but exported because it is cross-package;
// it is part of the implementation of the "go test" command.
func RunTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ok bool) {
ran, ok := runTests(matchString, tests)
if !ran && !haveExamples {