moddeps_test.go (go1.19.src) | : | moddeps_test.go (go1.19.1.src) | ||
---|---|---|---|---|
skipping to change at line 36 | skipping to change at line 36 | |||
// modules in GOROOT are in a consistent state. | // modules in GOROOT are in a consistent state. | |||
// | // | |||
// In short mode, it does a limited quick check and stops there. | // In short mode, it does a limited quick check and stops there. | |||
// In long mode, it also makes a copy of the entire GOROOT tree | // In long mode, it also makes a copy of the entire GOROOT tree | |||
// and requires network access to perform more thorough checks. | // and requires network access to perform more thorough checks. | |||
// Keep this distinction in mind when adding new checks. | // Keep this distinction in mind when adding new checks. | |||
// | // | |||
// See issues 36852, 41409, and 43687. | // See issues 36852, 41409, and 43687. | |||
// (Also see golang.org/issue/27348.) | // (Also see golang.org/issue/27348.) | |||
func TestAllDependencies(t *testing.T) { | func TestAllDependencies(t *testing.T) { | |||
t.Skip("TODO(#54376): 1.19.1 contains unreleased changes from vendored mo | ||||
dules") | ||||
goBin := testenv.GoToolPath(t) | goBin := testenv.GoToolPath(t) | |||
// Ensure that all packages imported within GOROOT | // Ensure that all packages imported within GOROOT | |||
// are vendored in the corresponding GOROOT module. | // are vendored in the corresponding GOROOT module. | |||
// | // | |||
// This property allows offline development within the Go project, and en sures | // This property allows offline development within the Go project, and en sures | |||
// that all dependency changes are presented in the usual code review pro cess. | // that all dependency changes are presented in the usual code review pro cess. | |||
// | // | |||
// As a quick first-order check, avoid network access and the need to cop y the | // As a quick first-order check, avoid network access and the need to cop y the | |||
// entire GOROOT tree or explicitly invoke version control to check for c hanges. | // entire GOROOT tree or explicitly invoke version control to check for c hanges. | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 3 lines changed or added |