aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Shuralyov <dmitshur@golang.org>2020-06-04 19:20:01 -0400
committerDmitri Shuralyov <dmitshur@golang.org>2020-06-08 15:44:05 +0000
commitbb8901456cec0baa0b0ad894cfe412ee6275ec5c (patch)
treebee21ac557d6eda2eb8c204c47076735ac1e69d7
parentee379d2b08ce12c24042da18d711e2a1bd7943f0 (diff)
downloadgo-bb8901456cec0baa0b0ad894cfe412ee6275ec5c.tar.gz
go-bb8901456cec0baa0b0ad894cfe412ee6275ec5c.zip
cmd/internal/moddeps: don't skip directories if there are unusual files
Previously, if there was a non-directory file with the name vendor or testdata in the Go source tree, it was possible for some directories to be skipped by filepath.Walk performed in findGorootModules. As unusual and unlikely as such non-directory files are, it's better to ensure all directories are visited, and all modules in the GOROOT source tree are found. This increases confidence that tests relying on findGorootModule will not have unexpected false negatives. For #36851. For #36907. Change-Id: I468e80d8f57119e2c72d546b3fd1e23c31fd6e6c Reviewed-on: https://go-review.googlesource.com/c/go/+/236600 Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com>
-rw-r--r--src/cmd/internal/moddeps/moddeps_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/internal/moddeps/moddeps_test.go b/src/cmd/internal/moddeps/moddeps_test.go
index 5d73edd318..2e6167322e 100644
--- a/src/cmd/internal/moddeps/moddeps_test.go
+++ b/src/cmd/internal/moddeps/moddeps_test.go
@@ -36,7 +36,7 @@ func findGorootModules(t *testing.T) []gorootModule {
if err != nil {
return err
}
- if info.Name() == "vendor" || info.Name() == "testdata" {
+ if info.IsDir() && (info.Name() == "vendor" || info.Name() == "testdata") {
return filepath.SkipDir
}
if path == filepath.Join(runtime.GOROOT(), "pkg") {