aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/dist/test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/dist/test.go')
-rw-r--r--src/cmd/dist/test.go13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go
index 554adea1b1..5a875ebf19 100644
--- a/src/cmd/dist/test.go
+++ b/src/cmd/dist/test.go
@@ -601,9 +601,16 @@ func (t *tester) registerTests() {
}
}
} else {
- // Use a format string to only list packages and commands that have tests.
- const format = "{{if (or .TestGoFiles .XTestGoFiles)}}{{.ImportPath}}{{end}}"
- cmd := exec.Command(gorootBinGo, "list", "-f", format)
+ // Use 'go list std cmd' to get a list of all Go packages
+ // that running 'go test std cmd' could find problems in.
+ // (In race test mode, also set -tags=race.)
+ //
+ // This includes vendored packages and other packages without
+ // tests so that 'dist test' finds if any of them don't build,
+ // have a problem reported by high-confidence vet checks that
+ // come with 'go test', and anything else 'go test' may check
+ // in the future. See go.dev/issue/60463.
+ cmd := exec.Command(gorootBinGo, "list")
if t.race {
cmd.Args = append(cmd.Args, "-tags=race")
}