1
0
mirror of https://github.com/golang/go synced 2024-11-22 03:24:41 -07:00

cmd/go: include test files in the files sent to gofmt, govet, and gofix

Also, add TestGoFiles to the go command's public api.

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/5505083
This commit is contained in:
Sanjay Menakuru 2012-01-03 14:12:54 +11:00 committed by Andrew Gerrand
parent 12d4847263
commit 7ccd505dc4
2 changed files with 37 additions and 29 deletions

View File

@ -36,7 +36,8 @@ being passed to the template is:
Stale bool // would 'go install' do anything for this package?
// Source files
GoFiles []string // .go source files (excluding CgoFiles)
GoFiles []string // .go source files (excluding CgoFiles and TestGoFiles)
TestGoFiles []string // _test.go source files
CFiles []string // .c source files
HFiles []string // .h source files
SFiles []string // .s source files

View File

@ -29,7 +29,8 @@ type Package struct {
Stale bool `json:",omitempty"` // would 'go install' do anything for this package?
// Source files
GoFiles []string // .go source files (excluding CgoFiles)
GoFiles []string // .go source files (excluding CgoFiles and TestGoFiles)
TestGoFiles []string `json:",omitempty"` // _test.go source files
CFiles []string `json:",omitempty"` // .c source files
HFiles []string `json:",omitempty"` // .h source files
SFiles []string `json:",omitempty"` // .s source files
@ -46,7 +47,7 @@ type Package struct {
pkgdir string
info *build.DirInfo
imports []*Package
gofiles []string // GoFiles+CgoFiles, absolute paths
gofiles []string // GoFiles+CgoFiles+TestGoFiles files, absolute paths
target string // installed file for this package (may be executable)
fake bool // synthesized package
}
@ -132,6 +133,7 @@ func scanPackage(ctxt *build.Context, t *build.Tree, arg, importPath, dir string
Dir: dir,
Imports: info.Imports,
GoFiles: info.GoFiles,
TestGoFiles: info.TestGoFiles,
CFiles: info.CFiles,
HFiles: info.HFiles,
SFiles: info.SFiles,
@ -157,7 +159,12 @@ func scanPackage(ctxt *build.Context, t *build.Tree, arg, importPath, dir string
for _, f := range info.CgoFiles {
p.gofiles = append(p.gofiles, filepath.Join(dir, f))
}
for _, f := range info.TestGoFiles {
p.gofiles = append(p.gofiles, filepath.Join(dir, f))
}
sort.Strings(p.gofiles)
srcss := [][]string{
p.GoFiles,
p.CFiles,