Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/go: test failures due to network #55164

Open
rsc opened this issue Sep 20, 2022 · 63 comments
Open

cmd/go: test failures due to network #55164

rsc opened this issue Sep 20, 2022 · 63 comments
Labels
NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone

Comments

@rsc
Copy link
Contributor

rsc commented Sep 20, 2022

#!watchflakes
post <- (pkg ~ `^cmd/go` || pkg ~ `^golang.org/x/mod`) && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out` ||
	`Failed to connect to .* port 80.*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:`)

cmd/go's tests flake when the network is having trouble (or the servers on the other end are).
This should only happen on the longtest builders.
This issue gathers reports so we can watch the frequency.

@rsc rsc added the NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. label Sep 20, 2022
@gopherbot
Copy link

gopherbot commented Sep 20, 2022

Found new matching flaky dashboard failures for:

#!watchflakes
post <- pkg == "cmd/go" && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`fatal: unable to connect to vcs-test.golang.org:`)
2022-08-11 17:53 linux-386-longtest go@a526ec15 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:44603/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_replace_gopkgin (12.82s)
        script_test.go:270: 
            # (2022-08-11T18:26:27Z)
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
            # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
            # specifying […].vN and a compatible version should succeed, even if
            # the replacement path is not a gopkg.in path. (12.690s)
            > cd 4-to-4
            $WORK/gopath/src/4-to-4
            > go list -m gopkg.in/src-d/go-git.v4
            [stderr]
            go: gopkg.in/src-d/go-git.v4@v4.13.1 requires
            	gopkg.in/check.v1@v1.0.0-20180628173108-788fd7840127: unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_replace_gopkgin.txt:20: unexpected command failure
2022-08-11 17:53 linux-amd64-longtest go@a526ec15 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:38525/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_replace_gopkgin (13.65s)
        script_test.go:270: 
            # (2022-08-11T18:18:03Z)
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
...
    --- FAIL: TestScript/mod_gopkg_unstable (10.79s)
        script_test.go:270: 
            # (2022-08-11T18:19:59Z)
            > env GO111MODULE=on
            > cp go.mod.empty go.mod
            > go get gopkg.in/dummy.v2-unstable
            [stderr]
            go: downloading gopkg.in/dummy.v2-unstable v2.0.0
            go: added gopkg.in/dummy.v2-unstable v2.0.0
            > cp x.go.txt x.go
...
            > [!net] skip
            > [!exec:git] skip
            > env GOPROXY=direct
            > env GOSUMDB=off
            > go get gopkg.in/macaroon-bakery.v2-unstable/bakery
            [stderr]
            go: gopkg.in/macaroon-bakery.v2-unstable/bakery: unrecognized import path "gopkg.in/macaroon-bakery.v2-unstable": reading https://gopkg.in/macaroon-bakery.v2-unstable?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-macaroon-bakery/macaroon-bakery.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_gopkg_unstable.txt:15: unexpected command failure
2022-08-17 15:12 linux-386-longtest go@16c2b361 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:46851/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_replace_gopkgin (19.81s)
        script_test.go:270: 
            # (2022-08-17T15:46:44Z)
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
...
    --- FAIL: TestScript/mod_gopkg_unstable (26.23s)
        script_test.go:270: 
            # (2022-08-17T15:47:31Z)
            > env GO111MODULE=on
            > cp go.mod.empty go.mod
            > go get gopkg.in/dummy.v2-unstable
            [stderr]
            go: downloading gopkg.in/dummy.v2-unstable v2.0.0
            go: added gopkg.in/dummy.v2-unstable v2.0.0
            > cp x.go.txt x.go
...
            go: downloading golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
            go: downloading golang.org/x/net v0.0.0-20220812174116-3211cb980234
            go: downloading github.com/golang/protobuf v1.5.2
            go: downloading gopkg.in/errgo.v1 v1.0.1
            go: downloading gopkg.in/macaroon.v2 v2.1.0
            go: github.com/juju/loggo@v1.0.0 requires
            	gopkg.in/check.v1@v1.0.0-20160105164936-4f90aeace3a2: unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_gopkg_unstable.txt:15: unexpected command failure
2022-08-17 16:11 linux-386-longtest go@ea6cb02a cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:37491/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_gopkg_unstable (37.65s)
        script_test.go:270: 
            # (2022-08-17T16:49:38Z)
            > env GO111MODULE=on
            > cp go.mod.empty go.mod
            > go get gopkg.in/dummy.v2-unstable
            [stderr]
            go: downloading gopkg.in/dummy.v2-unstable v2.0.0
...
            go: added google.golang.org/protobuf v1.26.0
            go: added gopkg.in/errgo.v1 v1.0.1
            go: added gopkg.in/macaroon-bakery.v2-unstable v2.0.0-20171026135619-38b77b89a624
            go: added gopkg.in/macaroon.v2 v2.1.0
            > go list -m all
            [stderr]
            go: unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_gopkg_unstable.txt:16: unexpected command failure
2022-08-17 17:39 linux-amd64-longtest go@9b988c90 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:45977/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_replace_gopkgin (16.20s)
        script_test.go:270: 
            # (2022-08-17T18:05:20Z)
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
...
    --- FAIL: TestScript/mod_gopkg_unstable (58.80s)
        script_test.go:270: 
            # (2022-08-17T18:05:40Z)
            > env GO111MODULE=on
            > cp go.mod.empty go.mod
            > go get gopkg.in/dummy.v2-unstable
            [stderr]
            go: downloading gopkg.in/dummy.v2-unstable v2.0.0
            go: added gopkg.in/dummy.v2-unstable v2.0.0
            > cp x.go.txt x.go
...
            	18:06:31.991705 http.c:715              <= Recv header: Content-Length: 207
            	18:06:31.991718 http.c:703              <= Recv header, 0000000041 bytes (0x00000029)
            	18:06:31.991722 http.c:715              <= Recv header: Content-Type: text/plain; charset=utf-8
            	18:06:31.991728 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	18:06:31.991732 http.c:715              <= Recv header:
            	18:06:31.991750 http.c:756              == Info: Connection #0 to host gopkg.in left intact
            	remote: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            	fatal: unable to access 'https://gopkg.in/check.v1/': The requested URL returned error: 502
            [exit status 1]
            FAIL: testdata/script/mod_gopkg_unstable.txt:16: unexpected command failure
2022-08-17 17:39 linux-amd64-longtest go@04d8c232 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:35563/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_gopkg_unstable (40.46s)
        script_test.go:270: 
            # (2022-08-17T18:05:45Z)
            > env GO111MODULE=on
            > cp go.mod.empty go.mod
            > go get gopkg.in/dummy.v2-unstable
            [stderr]
            go: downloading gopkg.in/dummy.v2-unstable v2.0.0
...
            go: added google.golang.org/protobuf v1.26.0
            go: added gopkg.in/errgo.v1 v1.0.1
            go: added gopkg.in/macaroon-bakery.v2-unstable v2.0.0-20171026135619-38b77b89a624
            go: added gopkg.in/macaroon.v2 v2.1.0
            > go list -m all
            [stderr]
            go: unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_gopkg_unstable.txt:16: unexpected command failure
2022-09-01 23:18 linux-amd64-longtest go@a74d46d8 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:42783/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/gopath_moved_repo (14.21s)
        script_test.go:282: 
            # (2022-09-01T23:45:35Z)
            # Test that 'go get -u' reports packages whose VCS configurations do not
            # match their import paths. (0.000s)
            # We need to execute a custom Go program to break the config files.
            #
            # git will ask for a username and password when we run 'go get -d -f -u',
...
            23:45:50.045526 http.c:715              <= Recv header: x-frame-options: DENY
            23:45:50.045531 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            23:45:50.045536 http.c:715              <= Recv header:
            23:45:50.045566 http.c:756              == Info: Connection #0 to host github.com left intact
            remote: Repository not found.
            fatal: Authentication failed for 'https://github.com/rsc/pdfXXX/'
            package rsc.io/pdf: exit status 1
            [exit status 1]
            > [exec:git] stderr 'is a custom import path for'
            FAIL: testdata/script/gopath_moved_repo.txt:26: no match for `(?m)is a custom import path for` found in stderr
2022-09-06 11:14 linux-386-longtest go@1c504843 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:46597/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_invalid_version (34.21s)
        script_test.go:282: 
            # (2022-09-06T11:47:55Z)
            # Regression test for golang.org/issue/27173: if the user (or go.mod file)
            # requests a pseudo-version that does not match both the module path and commit
            # metadata, reject it with a helpful error message.
            #
            # TODO(bcmills): Replace the github.com/pierrec/lz4 examples with something
...
    --- FAIL: TestScript/get_insecure_env (4.04s)
        script_test.go:282: 
            # (2022-09-06T11:48:47Z)
            # GOPATH: Set up (0.000s)
            # GOPATH: Try go get -d of HTTP-only repo (should fail). (0.141s)
            # GOPATH: Try again with invalid GOINSECURE (should fail). (0.066s)
            # GOPATH: Try with correct GOINSECURE (should succeed). (3.837s)
            > env GOINSECURE=insecure.go-get-issue-15410.appspot.com/pkg/p
            > go get -d insecure.go-get-issue-15410.appspot.com/pkg/p
            [stderr]
...
            11:49:12.150329 http.c:756              == Info: GnuTLS recv error (-110): The TLS connection was non-properly terminated.
            ��b�
            11:49:12.150364 http.c:756              == Info: Failed receiving HTTP2 data
            b�
            11:49:12.150381 http.c:756              == Info: Failed sending HTTP2 data
            11:49:12.150389 http.c:756              == Info: Connection #0 to host github.com left intact
            fatal: unable to access 'https://github.com/rsc/sampler/': GnuTLS recv error (-110): The TLS connection was non-properly terminated.
            package rsc.io/sampler: exit status 128
            [exit status 1]
            FAIL: testdata/script/govcs.txt:153: unexpected command failure
2022-09-06 21:53 linux-386-longtest go@86f8b8d3 cmd/go.TestIssue11457 (log)
go test proxy running at GOPROXY=http://127.0.0.1:38493/mod
--- FAIL: TestIssue11457 (0.19s)
    go_test.go:1004: running testgo [get -d -u rsc.io/go-get-issue-11457]
    go_test.go:1004: standard error:
    go_test.go:1004: package rsc.io/go-get-issue-11457: unrecognized import path "rsc.io/go-get-issue-11457": https fetch: Get "https://rsc.io/go-get-issue-11457?go-get=1": dial tcp [2001:4860:4802:32::15]:443: connect: network is unreachable

    go_test.go:1004: go [get -d -u rsc.io/go-get-issue-11457] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1
2022-09-07 05:37 linux-386-longtest go@c011270f cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:33035/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/govcs (0.38s)
        script_test.go:282: 
            # (2022-09-07T06:09:41Z)
            # GOVCS stops go get (0.048s)
            # public pattern works (0.015s)
            # private pattern works (0.007s)
            # other patterns work (for more patterns, see TestGOVCS) (0.026s)
            # bad patterns are reported (for more bad patterns, see TestGOVCSErrors) (0.035s)
            # bad GOVCS patterns do not stop commands that do not need to check VCS (0.124s)
            # svn is disallowed by default (0.011s)
            # fossil is disallowed by default (0.007s)
            # bzr is disallowed by default (0.006s)
            # git is OK by default (0.097s)
            > env GOVCS=
            > env GONOSUMDB='*'
            > [net] [exec:git] [!short] go get rsc.io/sampler
            [stderr]
            go: unrecognized import path "rsc.io/sampler": https fetch: Get "https://rsc.io/sampler?go-get=1": dial tcp [2001:4860:4802:32::15]:443: connect: network is unreachable
            [exit status 1]
            FAIL: testdata/script/govcs.txt:70: unexpected command failure
2022-09-09 00:28 linux-386-longtest go@3c33c3b3 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:32793/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_replace_gopkgin (13.05s)
        script_test.go:282: 
            # (2022-09-09T01:03:47Z)
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
            # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
            # specifying […].vN and a compatible version should succeed, even if
            # the replacement path is not a gopkg.in path. (12.894s)
            > cd 4-to-4
            $WORK/gopath/src/4-to-4
            > go list -m gopkg.in/src-d/go-git.v4
            [stderr]
            go: gopkg.in/src-d/go-git.v4@v4.13.1 requires
            	gopkg.in/check.v1@v1.0.0-20180628173108-788fd7840127: unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_replace_gopkgin.txt:20: unexpected command failure
2022-09-09 01:04 linux-386-longtest go@76c94eb7 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:33995/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_replace_gopkgin (13.07s)
        script_test.go:282: 
            # (2022-09-09T01:44:42Z)
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
            # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
            # specifying […].vN and a compatible version should succeed, even if
            # the replacement path is not a gopkg.in path. (12.932s)
            > cd 4-to-4
            $WORK/gopath/src/4-to-4
            > go list -m gopkg.in/src-d/go-git.v4
            [stderr]
            go: gopkg.in/src-d/go-git.v4@v4.13.1 requires
            	gopkg.in/check.v1@v1.0.0-20180628173108-788fd7840127: unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_replace_gopkgin.txt:20: unexpected command failure
2022-09-09 01:04 linux-amd64-longtest go@76c94eb7 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:38211/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_replace_gopkgin (17.74s)
        script_test.go:282: 
            # (2022-09-09T01:36:29Z)
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
            # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
            # specifying […].vN and a compatible version should succeed, even if
            # the replacement path is not a gopkg.in path. (17.655s)
            > cd 4-to-4
            $WORK/gopath/src/4-to-4
            > go list -m gopkg.in/src-d/go-git.v4
            [stderr]
            go: gopkg.in/src-d/go-git.v4@v4.13.1 requires
            	gopkg.in/check.v1@v1.0.0-20180628173108-788fd7840127: unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_replace_gopkgin.txt:20: unexpected command failure
2022-09-15 20:02 linux-amd64-longtest go@a2973914 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:45665/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/govcs (0.46s)
        script_test.go:282: 
            # (2022-09-15T20:25:50Z)
            # GOVCS stops go get (0.023s)
            # public pattern works (0.025s)
            # private pattern works (0.015s)
            # other patterns work (for more patterns, see TestGOVCS) (0.049s)
            # bad patterns are reported (for more bad patterns, see TestGOVCSErrors) (0.023s)
            # bad GOVCS patterns do not stop commands that do not need to check VCS (0.074s)
            # svn is disallowed by default (0.021s)
            # fossil is disallowed by default (0.016s)
            # bzr is disallowed by default (0.017s)
            # git is OK by default (0.189s)
            > env GOVCS=
            > env GONOSUMDB='*'
            > [net] [exec:git] [!short] go get rsc.io/sampler
            [stderr]
            go: unrecognized import path "rsc.io/sampler": https fetch: Get "https://rsc.io/sampler?go-get=1": dial tcp [2001:4860:4802:38::15]:443: connect: network is unreachable
            [exit status 1]
            FAIL: testdata/script/govcs.txt:70: unexpected command failure

watchflakes

@gopherbot
Copy link

gopherbot commented Sep 20, 2022

Found new matching flaky dashboard failures for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`vcs-test.golang.org`)
2022-07-18 15:58 linux-amd64-longtest go@c0c1bbde cmd/go/internal/modfetch.TestCodeRepo (log)
--- FAIL: TestCodeRepo (0.00s)
    --- FAIL: TestCodeRepo/vcs-test.golang.org_go_mod_gitrepo1/v2.3.4+incompatible (30.02s)
        coderepo_test.go:599: repoStat("v2.3.4+incompatible"): unrecognized import path "vcs-test.golang.org/go/mod/gitrepo1": https fetch: Get "https://vcs-test.golang.org/go/mod/gitrepo1?go-get=1": dial tcp 35.184.38.56:443: i/o timeout, wanted "resolves to version v2.0.1+incompatible (v2.3.4 is not a tag)"
    --- FAIL: TestCodeRepo/vcs-test.golang.org_go_v2module_v2/v2.0.0 (30.01s)
        coderepo_test.go:603: repo.Stat("v2.0.0"): unrecognized import path "vcs-test.golang.org/go/v2module/v2": https fetch: Get "https://vcs-test.golang.org/go/v2module/v2?go-get=1": dial tcp 35.184.38.56:443: i/o timeout
    --- FAIL: TestCodeRepo/vcs-test.golang.org_go_mod_gitrepo1/master (27.21s)
        coderepo_test.go:603: repo.Stat("master"): unrecognized import path "vcs-test.golang.org/go/mod/gitrepo1": https fetch: Get "https://vcs-test.golang.org/go/mod/gitrepo1?go-get=1": dial tcp 35.184.38.56:443: i/o timeout
2022-07-19 20:07 linux-amd64-longtest go@176b63e7 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:46359/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/get_legacy (150.13s)
        script_test.go:270: 
            # (2022-07-19T20:32:30Z)
            # This test was converted from a test in vendor_test.go (which no longer exists).
            # That seems to imply that it's about vendoring semantics, but the test doesn't
            # use 'go -mod=vendor' (and none of the fetched repos have vendor folders).
            # The test still seems to be useful as a test of direct-mode go get. (150.126s)
            > [short] skip
...
            	/workdir/go/src/github.com/myitcv/vgo_example_compat/sub (from $GOROOT)
            	$WORK/tmp/d2/src/github.com/myitcv/vgo_example_compat/sub (from $GOPATH)
            cannot find package "github.com/myitcv/vgo_example_compat/v2" in any of:
            	/workdir/go/src/github.com/myitcv/vgo_example_compat/v2 (from $GOROOT)
            	$WORK/tmp/d2/src/github.com/myitcv/vgo_example_compat/v2 (from $GOPATH)
            cannot find package "github.com/myitcv/vgo_example_compat/v2/sub" in any of:
            	/workdir/go/src/github.com/myitcv/vgo_example_compat/v2/sub (from $GOROOT)
            	$WORK/tmp/d2/src/github.com/myitcv/vgo_example_compat/v2/sub (from $GOPATH)
            [exit status 1]
            FAIL: testdata/script/get_legacy.txt:43: unexpected command failure
2022-07-25 20:44 linux-amd64-longtest go@24dc27a3 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:38787/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_pseudo_cache (100.99s)
        script_test.go:270: 
            # (2022-07-25T21:09:09Z)
            # Regression test for golang.org/issue/27171: after resolving an older
            # pseudo-version of a commit, future resolution of that commit by hash should
            # choose the highest appropriate pseudo-version instead of the cached one. (13.233s)
            # If GOPROXY is 'off', lookups should use whatever pseudo-version is available. (0.009s)
            # If we can re-resolve the commit to a pseudo-version, fetching the commit by
...
    --- FAIL: TestScript/mod_invalid_version (131.15s)
        script_test.go:270: 
            # (2022-07-25T21:09:13Z)
            # Regression test for golang.org/issue/27173: if the user (or go.mod file)
            # requests a pseudo-version that does not match both the module path and commit
            # metadata, reject it with a helpful error message.
            #
            # TODO(bcmills): Replace the github.com/pierrec/lz4 examples with something
            # equivalent on vcs-test.golang.org.
            # An incomplete commit hash is not a valid semantic version,
...
            	21:09:42.770989 http.c:715              <= Recv header: x-xss-protection: 0
            	21:09:42.770991 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	21:09:42.770993 http.c:715              <= Recv header: date: Mon, 25 Jul 2022 21:09:42 GMT
            	21:09:42.770996 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	21:09:42.770998 http.c:715              <= Recv header:
            	21:11:24.308643 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	fatal: early EOF
            	fatal: index-pack failed
            [exit status 1]
            FAIL: testdata/script/mod_invalid_version.txt:24: unexpected command failure
2022-08-04 14:47 linux-386-longtest go@ab0a94c6 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:39145/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/gopath_moved_repo (3.81s)
        script_test.go:270: 
            # (2022-08-04T15:25:17Z)
            # Test that 'go get -u' reports packages whose VCS configurations do not
            # match their import paths. (0.000s)
            # We need to execute a custom Go program to break the config files.
            #
            # git will ask for a username and password when we run 'go get -d -f -u',
            # so we also need to set GIT_ASKPASS. Conveniently, a single binary can
            # perform both tasks! (0.735s)
            # Test that 'go get -u' reports moved git packages. (2.949s)
            # Test that 'go get -u' reports moved Mercurial packages. (0.128s)
            > [exec:hg] go get -d vcs-test.golang.org/go/custom-hg-hello
            [stderr]
            package vcs-test.golang.org/go/custom-hg-hello: unrecognized import path "vcs-test.golang.org/go/custom-hg-hello": https fetch: Get "https://vcs-test.golang.org/go/custom-hg-hello/?go-get=1": stream error: stream ID 3; INTERNAL_ERROR; received from peer
            [exit status 1]
            FAIL: testdata/script/gopath_moved_repo.txt:33: unexpected command failure
2022-08-08 17:29 linux-amd64-longtest go@9903ab54 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:42355/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/get_legacy (0.24s)
        script_test.go:270: 
            # (2022-08-08T17:53:22Z)
            # This test was converted from a test in vendor_test.go (which no longer exists).
            # That seems to imply that it's about vendoring semantics, but the test doesn't
            # use 'go -mod=vendor' (and none of the fetched repos have vendor folders).
            # The test still seems to be useful as a test of direct-mode go get. (0.243s)
            > [short] skip
...
            17:53:22.423466 http.c:715              => Send header:
            17:53:22.423499 http.c:756              == Info: We are completely uploaded and fine
            17:53:22.423868 http.c:756              == Info: HTTP/2 stream 0 was not closed cleanly: INTERNAL_ERROR (err 2)
            17:53:22.423892 http.c:756              == Info: stopped the pause stream!
            17:53:22.423903 http.c:756              == Info: Connection #0 to host vcs-test.golang.org left intact
            error: RPC failed; curl 92 HTTP/2 stream 0 was not closed cleanly: INTERNAL_ERROR (err 2)
            fatal: the remote end hung up unexpectedly
            package vcs-test.golang.org/git/modlegacy1-old.git/p1: exit status 128
            [exit status 1]
            FAIL: testdata/script/get_legacy.txt:11: unexpected command failure
2022-08-12 18:15 linux-386-longtest go@b6f87b07 cmd/go/internal/modfetch.TestCodeRepo (log)
--- FAIL: TestCodeRepo (0.00s)
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2/d670f940 (10.30s)
        coderepo_test.go:603: repo.Stat("d670f940"): unrecognized import path "gopkg.in/yaml.v2": reading https://gopkg.in/yaml.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: error reading from GitHub: net/http: request canceled (Client.Timeout exceeded while reading body)
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2_abc/ (10.30s)
        coderepo_test.go:599: repoStat(""): unrecognized import path "gopkg.in/yaml.v2/abc": reading https://gopkg.in/yaml.v2/abc?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: error reading from GitHub: net/http: request canceled (Client.Timeout exceeded while reading body), wanted "invalid module path \"gopkg.in/yaml.v2/abc\""
2022-08-17 15:12 linux-amd64-longtest go@16c2b361 cmd/go/internal/modfetch.TestCodeRepo (log)
--- FAIL: TestCodeRepo (0.00s)
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2_abc/ (10.36s)
        coderepo_test.go:599: repoStat(""): unrecognized import path "gopkg.in/yaml.v2/abc": reading https://gopkg.in/yaml.v2/abc?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: error reading from GitHub: net/http: request canceled (Client.Timeout exceeded while reading body), wanted "invalid module path \"gopkg.in/yaml.v2/abc\""
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2/d670f940 (10.10s)
        coderepo_test.go:603: repo.Stat("d670f940"): unrecognized import path "gopkg.in/yaml.v2": reading https://gopkg.in/yaml.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: error reading from GitHub: net/http: request canceled (Client.Timeout exceeded while reading body)
2022-08-17 16:08 linux-386-longtest go@bd1bff4e cmd/go/internal/modfetch.TestCodeRepo (log)
--- FAIL: TestCodeRepo (0.00s)
    --- FAIL: TestCodeRepo/gopkg.in_check.v1/20d25e280405 (12.55s)
        coderepo_test.go:603: repo.Stat("20d25e280405"): gopkg.in/check.v1@20d25e280405: invalid version: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /workdir/tmp/gitrepo-test-2243804362/cache/vcs/9241c28341fcedca6a799ab7a465dd6924dc5d94044cbfabb75778817250adfc: exit status 128:
            	remote: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            	fatal: unable to access 'https://gopkg.in/check.v1/': The requested URL returned error: 502
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2/d670f940 (10.10s)
        coderepo_test.go:603: repo.Stat("d670f940"): unrecognized import path "gopkg.in/yaml.v2": reading https://gopkg.in/yaml.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-yaml/yaml.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2_abc/ (10.31s)
        coderepo_test.go:599: repoStat(""): unrecognized import path "gopkg.in/yaml.v2/abc": reading https://gopkg.in/yaml.v2/abc?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-yaml/yaml.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers), wanted "invalid module path \"gopkg.in/yaml.v2/abc\""
2022-08-17 16:26 linux-amd64-longtest go@014f0e82 cmd/go/internal/modfetch.TestCodeRepo (log)
--- FAIL: TestCodeRepo (0.00s)
    --- FAIL: TestCodeRepo/gopkg.in_natefinch_lumberjack.v2/v2.1 (10.31s)
        coderepo_test.go:603: repo.Stat("v2.1"): unrecognized import path "gopkg.in/natefinch/lumberjack.v2": reading https://gopkg.in/natefinch/lumberjack.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/natefinch/lumberjack.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
    --- FAIL: TestCodeRepo/gopkg.in_natefinch_lumberjack.v2/latest (9.65s)
        coderepo_test.go:603: repo.Stat("latest"): unrecognized import path "gopkg.in/natefinch/lumberjack.v2": reading https://gopkg.in/natefinch/lumberjack.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/natefinch/lumberjack.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
    --- FAIL: TestCodeRepo/gopkg.in_check.v1/20d25e280405 (10.41s)
        coderepo_test.go:603: repo.Stat("20d25e280405"): unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2/d670f940 (10.40s)
        coderepo_test.go:603: repo.Stat("d670f940"): unrecognized import path "gopkg.in/yaml.v2": reading https://gopkg.in/yaml.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-yaml/yaml.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
2022-08-17 16:26 linux-amd64-longtest go@014f0e82 cmd/go/internal/modfetch.TestCodeRepoVersions (log)
--- FAIL: TestCodeRepoVersions (0.22s)
    --- FAIL: TestCodeRepoVersions/parallel (0.00s)
        --- FAIL: TestCodeRepoVersions/parallel/gopkg.in_natefinch_lumberjack.v2 (0.00s)
            coderepo_test.go:824: Versions(""): unrecognized import path "gopkg.in/natefinch/lumberjack.v2": reading https://gopkg.in/natefinch/lumberjack.v2?go-get=1: 502 Bad Gateway
                	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/natefinch/lumberjack.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
2022-08-17 17:47 linux-386-longtest go@7e7ecf5c cmd/go/internal/modfetch.TestCodeRepo (log)
--- FAIL: TestCodeRepo (0.00s)
    --- FAIL: TestCodeRepo/gopkg.in_natefinch_lumberjack.v2/latest (10.36s)
        coderepo_test.go:603: repo.Stat("latest"): unrecognized import path "gopkg.in/natefinch/lumberjack.v2": reading https://gopkg.in/natefinch/lumberjack.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/natefinch/lumberjack.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
    --- FAIL: TestCodeRepo/gopkg.in_natefinch_lumberjack.v2/v2.1 (9.82s)
        coderepo_test.go:603: repo.Stat("v2.1"): unrecognized import path "gopkg.in/natefinch/lumberjack.v2": reading https://gopkg.in/natefinch/lumberjack.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/natefinch/lumberjack.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
2022-08-17 17:47 linux-386-longtest go@7e7ecf5c cmd/go/internal/modfetch.TestCodeRepoVersions (log)
--- FAIL: TestCodeRepoVersions (0.24s)
    --- FAIL: TestCodeRepoVersions/parallel (0.00s)
        --- FAIL: TestCodeRepoVersions/parallel/gopkg.in_natefinch_lumberjack.v2 (0.00s)
            coderepo_test.go:824: Versions(""): unrecognized import path "gopkg.in/natefinch/lumberjack.v2": reading https://gopkg.in/natefinch/lumberjack.v2?go-get=1: 502 Bad Gateway
                	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/natefinch/lumberjack.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
2022-08-18 19:12 linux-386-longtest go@0eb56ca4 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:46133/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_invalid_version (32.24s)
        script_test.go:282: 
            # (2022-08-18T19:45:51Z)
            # Regression test for golang.org/issue/27173: if the user (or go.mod file)
            # requests a pseudo-version that does not match both the module path and commit
            # metadata, reject it with a helpful error message.
            #
            # TODO(bcmills): Replace the github.com/pierrec/lz4 examples with something
...
            # A +incompatible suffix is not allowed on a version that is actually compatible. (0.917s)
            # The pseudo-version for a commit after a tag with a non-matching major version
            # should instead be based on the last matching tag. (14.624s)
            > cp go.mod.orig go.mod
            > go mod edit -require github.com/pierrec/lz4@473cd7ce01a1
            > go list -m github.com/pierrec/lz4
            [stdout]
            github.com/pierrec/lz4 v0.0.0-20190131084431-473cd7ce01a1
            > stdout 'github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1'
            FAIL: testdata/script/mod_invalid_version.txt:186: no match for `(?m)github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1` found in stdout
2022-09-09 20:29 windows-amd64-longtest go@54182ff5 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:54144/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_proxy_errors (0.07s)
        script_test.go:282: 
            # (2022-09-09T21:03:34Z)
            # Server responses should be truncated to some reasonable number of lines.
            # (For now, exactly eight.) (0.041s)
            > ! go list -m vcs-test.golang.org/auth/ormanylines@latest
            [stderr]
            go: vcs-test.golang.org/auth/ormanylines@latest: unrecognized import path "vcs-test.golang.org/auth/ormanylines": https fetch: Get "https://vcs-test.golang.org/auth/ormanylines?go-get=1": dial tcp: lookup vcs-test.golang.org: getaddrinfow: This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server.
            [exit status 1]
            > stderr '\tserver response:\n(.|\n)*\tline 8\n\t\[Truncated: too many lines.\]$'
            FAIL: testdata\script\mod_proxy_errors.txt:10: no match for `(?m)\tserver response:\n(.|\n)*\tline 8\n\t\[Truncated: too many lines.\]$` found in stderr
2022-09-15 21:10 linux-amd64-longtest go@e7a2014f cmd/go/internal/modload.TestQuery (log)
go: finding module for package golang.org/x/net/context
go: finding module for package golang.org/x/net
go: finding module for package golang.org/x/text
go: finding module for package github.com/rsc/quote/buggy
go: finding module for package github.com/rsc/quote
go: finding module for package golang.org/x/foo/bar
--- FAIL: TestQuery (0.00s)
    --- FAIL: TestQuery/vcs-test.golang.org_git_querytest.git/<v0.0.0//* (398.73s)
        query_test.go:209: Query(_, "vcs-test.golang.org/git/querytest.git", "<v0.0.0", "", *): module vcs-test.golang.org/git/querytest.git: git ls-remote -q origin in /workdir/tmp/modload-test-2371600252/pkg/mod/cache/vcs/472a2d737b08c24d053705e500bba7c89d07599cad59c74fa230c3b489f4f400: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
...
    --- FAIL: TestQuery/vcs-test.golang.org_git_querytest.git/patch/v1.9.10-pre1/* (398.73s)
        query_test.go:209: Query(_, "vcs-test.golang.org/git/querytest.git", "patch", "v1.9.10-pre1", *): module vcs-test.golang.org/git/querytest.git: git ls-remote -q origin in /workdir/tmp/modload-test-2371600252/pkg/mod/cache/vcs/472a2d737b08c24d053705e500bba7c89d07599cad59c74fa230c3b489f4f400: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
            want v1.9.10-pre1
    --- FAIL: TestQuery/vcs-test.golang.org_git_querytest.git/upgrade/v1.9.10-pre2+metadata/* (398.73s)
        query_test.go:209: Query(_, "vcs-test.golang.org/git/querytest.git", "upgrade", "v1.9.10-pre2+metadata", *): module vcs-test.golang.org/git/querytest.git: git ls-remote -q origin in /workdir/tmp/modload-test-2371600252/pkg/mod/cache/vcs/472a2d737b08c24d053705e500bba7c89d07599cad59c74fa230c3b489f4f400: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
            want v1.9.10-pre2.0.20190513201126-42abcb6df8ee
...
    --- FAIL: TestQuery/vcs-test.golang.org_git_querytest.git/ed5ffdaa//* (0.01s)
        query_test.go:209: Query(_, "vcs-test.golang.org/git/querytest.git", "ed5ffdaa", "", *): vcs-test.golang.org/git/querytest.git@ed5ffdaa: invalid version: git ls-remote -q origin in /workdir/tmp/modload-test-2371600252/pkg/mod/cache/vcs/472a2d737b08c24d053705e500bba7c89d07599cad59c74fa230c3b489f4f400: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
            want v1.9.10-pre2.0.20191220134614-ed5ffdaa1f5e
    --- FAIL: TestQuery/vcs-test.golang.org_git_querytest.git/7a1b6bf//* (0.01s)
        query_test.go:209: Query(_, "vcs-test.golang.org/git/querytest.git", "7a1b6bf", "", *): vcs-test.golang.org/git/querytest.git@7a1b6bf: invalid version: git ls-remote -q origin in /workdir/tmp/modload-test-2371600252/pkg/mod/cache/vcs/472a2d737b08c24d053705e500bba7c89d07599cad59c74fa230c3b489f4f400: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
            want v0.1.0

watchflakes

@rsc rsc changed the title cmd/go: flaky tests due to network cmd/go: test failures due to network Sep 20, 2022
@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`vcs-test.golang.org`)
2022-08-17 13:56 linux-amd64-longtest go@d09c6ac4 cmd/go/internal/modfetch.TestCodeRepo (log)
--- FAIL: TestCodeRepo (0.00s)
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2/d670f940 (10.10s)
        coderepo_test.go:603: repo.Stat("d670f940"): unrecognized import path "gopkg.in/yaml.v2": reading https://gopkg.in/yaml.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: error reading from GitHub: net/http: request canceled (Client.Timeout exceeded while reading body)
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2_abc/ (10.10s)
        coderepo_test.go:599: repoStat(""): unrecognized import path "gopkg.in/yaml.v2/abc": reading https://gopkg.in/yaml.v2/abc?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: error reading from GitHub: net/http: request canceled (Client.Timeout exceeded while reading body), wanted "invalid module path \"gopkg.in/yaml.v2/abc\""
2022-08-17 16:08 linux-amd64-longtest go@bd1bff4e cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:33573/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_gopkg_unstable (24.92s)
        script_test.go:270: 
            # (2022-08-17T16:31:45Z)
            > env GO111MODULE=on
            > cp go.mod.empty go.mod
            > go get gopkg.in/dummy.v2-unstable
            [stderr]
            go: downloading gopkg.in/dummy.v2-unstable v2.0.0
...
            go: downloading golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
            go: downloading golang.org/x/net v0.0.0-20220812174116-3211cb980234
            go: downloading github.com/golang/protobuf v1.5.2
            go: downloading gopkg.in/errgo.v1 v1.0.1
            go: downloading gopkg.in/macaroon.v2 v2.1.0
            go: github.com/juju/loggo@v1.0.0 requires
            	gopkg.in/check.v1@v1.0.0-20160105164936-4f90aeace3a2: unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_gopkg_unstable.txt:15: unexpected command failure
2022-08-17 16:11 linux-amd64-longtest go@ea6cb02a cmd/go/internal/modfetch.TestCodeRepo (log)
--- FAIL: TestCodeRepo (0.00s)
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2_abc/ (11.15s)
        coderepo_test.go:599: repoStat(""): unrecognized import path "gopkg.in/yaml.v2/abc": reading https://gopkg.in/yaml.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: error reading from GitHub: net/http: request canceled (Client.Timeout exceeded while reading body), wanted "invalid module path \"gopkg.in/yaml.v2/abc\""
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2/d670f940 (10.30s)
        coderepo_test.go:603: repo.Stat("d670f940"): unrecognized import path "gopkg.in/yaml.v2": reading https://gopkg.in/yaml.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: error reading from GitHub: net/http: request canceled (Client.Timeout exceeded while reading body)
2022-08-17 16:26 linux-386-longtest go@014f0e82 cmd/go/internal/modfetch.TestCodeRepo (log)
--- FAIL: TestCodeRepo (0.00s)
    --- FAIL: TestCodeRepo/gopkg.in_yaml.v2_abc/ (10.36s)
        coderepo_test.go:599: repoStat(""): unrecognized import path "gopkg.in/yaml.v2/abc": reading https://gopkg.in/yaml.v2/abc?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: error reading from GitHub: net/http: request canceled (Client.Timeout exceeded while reading body), wanted "invalid module path \"gopkg.in/yaml.v2/abc\""
2022-08-17 17:17 linux-386-longtest go@2a0327b8 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:37317/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_replace_gopkgin (13.57s)
        script_test.go:270: 
            # (2022-08-17T17:49:16Z)
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
...
    --- FAIL: TestScript/mod_gopkg_unstable (45.88s)
        script_test.go:270: 
            # (2022-08-17T17:49:43Z)
            > env GO111MODULE=on
            > cp go.mod.empty go.mod
            > go get gopkg.in/dummy.v2-unstable
            [stderr]
            go: downloading gopkg.in/dummy.v2-unstable v2.0.0
            go: added gopkg.in/dummy.v2-unstable v2.0.0
            > cp x.go.txt x.go
...
            go: added google.golang.org/protobuf v1.26.0
            go: added gopkg.in/errgo.v1 v1.0.1
            go: added gopkg.in/macaroon-bakery.v2-unstable v2.0.0-20171026135619-38b77b89a624
            go: added gopkg.in/macaroon.v2 v2.1.0
            > go list -m all
            [stderr]
            go: unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_gopkg_unstable.txt:16: unexpected command failure
2022-08-17 17:19 linux-amd64-longtest go@edfeea01 cmd/go/internal/modfetch.TestCodeRepo (log)
--- FAIL: TestCodeRepo (0.00s)
    --- FAIL: TestCodeRepo/gopkg.in_natefinch_lumberjack.v2/v2.1 (10.41s)
        coderepo_test.go:603: repo.Stat("v2.1"): unrecognized import path "gopkg.in/natefinch/lumberjack.v2": reading https://gopkg.in/natefinch/lumberjack.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/natefinch/lumberjack.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
    --- FAIL: TestCodeRepo/gopkg.in_natefinch_lumberjack.v2/latest (8.45s)
        coderepo_test.go:603: repo.Stat("latest"): unrecognized import path "gopkg.in/natefinch/lumberjack.v2": reading https://gopkg.in/natefinch/lumberjack.v2?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/natefinch/lumberjack.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
2022-08-17 17:19 linux-amd64-longtest go@edfeea01 cmd/go/internal/modfetch.TestCodeRepoVersions (log)
--- FAIL: TestCodeRepoVersions (0.25s)
    --- FAIL: TestCodeRepoVersions/parallel (0.00s)
        --- FAIL: TestCodeRepoVersions/parallel/gopkg.in_natefinch_lumberjack.v2 (0.00s)
            coderepo_test.go:824: Versions(""): unrecognized import path "gopkg.in/natefinch/lumberjack.v2": reading https://gopkg.in/natefinch/lumberjack.v2?go-get=1: 502 Bad Gateway
                	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/natefinch/lumberjack.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
2022-08-17 17:39 linux-amd64-longtest go@ce7aae50 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:44427/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_gopkg_unstable (10.38s)
        script_test.go:270: 
            # (2022-08-17T18:05:21Z)
            > env GO111MODULE=on
            > cp go.mod.empty go.mod
            > go get gopkg.in/dummy.v2-unstable
            [stderr]
            go: downloading gopkg.in/dummy.v2-unstable v2.0.0
            go: added gopkg.in/dummy.v2-unstable v2.0.0
            > cp x.go.txt x.go
            > cp go.mod.empty go.mod
            > go list
            [stdout]
            m
            > [!net] skip
            > [!exec:git] skip
            > env GOPROXY=direct
            > env GOSUMDB=off
            > go get gopkg.in/macaroon-bakery.v2-unstable/bakery
            [stderr]
            go: gopkg.in/macaroon-bakery.v2-unstable/bakery: unrecognized import path "gopkg.in/macaroon-bakery.v2-unstable": reading https://gopkg.in/macaroon-bakery.v2-unstable?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-macaroon-bakery/macaroon-bakery.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_gopkg_unstable.txt:15: unexpected command failure

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`vcs-test.golang.org`)
2022-09-27 21:10 linux-386-longtest go@4360fd8d cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:43583/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_replace_gopkgin (13.38s)
        script_test.go:282: 
            # (2022-09-27T22:25:00Z)
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
            # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
            # specifying […].vN and a compatible version should succeed, even if
            # the replacement path is not a gopkg.in path. (13.259s)
            > cd 4-to-4
            $WORK/gopath/src/4-to-4
            > go list -m gopkg.in/src-d/go-git.v4
            [stderr]
            go: gopkg.in/src-d/go-git.v4@v4.13.1 requires
            	gopkg.in/check.v1@v1.0.0-20180628173108-788fd7840127: unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_replace_gopkgin.txt:20: unexpected command failure
2022-09-27 21:14 linux-amd64-longtest go@3b5188ed cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:36693/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_replace_gopkgin (13.01s)
        script_test.go:282: 
            # (2022-09-27T22:26:18Z)
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
            # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
            # specifying […].vN and a compatible version should succeed, even if
            # the replacement path is not a gopkg.in path. (12.818s)
            > cd 4-to-4
            $WORK/gopath/src/4-to-4
            > go list -m gopkg.in/src-d/go-git.v4
            [stderr]
            go: gopkg.in/src-d/go-git.v4@v4.13.1 requires
            	gopkg.in/check.v1@v1.0.0-20180628173108-788fd7840127: unrecognized import path "gopkg.in/check.v1": reading https://gopkg.in/check.v1?go-get=1: 502 Bad Gateway
            	server response: Cannot obtain refs from GitHub: cannot talk to GitHub: Get https://github.com/go-check/check.git/info/refs?service=git-upload-pack: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
            [exit status 1]
            FAIL: testdata/script/mod_replace_gopkgin.txt:20: unexpected command failure

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`vcs-test.golang.org`)
2022-10-25 16:51 netbsd-386-9_0 go@2bdb5c57 cmd/go.TestNeedVersion (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54475
https://vcs-test.golang.org rerouted to https://127.0.0.1:54474
go test proxy running at GOPROXY=http://127.0.0.1:54473/mod
panic: test timed out after 9m0s

syscall.Syscall6(0x1, 0x2bae, 0x9692e40, 0x10020, 0x0, 0x0, 0x0)
	/tmp/workdir/go/src/syscall/asm_unix_386.s:43 +0x5 fp=0x9692e18 sp=0x9692e14 pc=0x80c48a5
os.wait6(0x1, 0x2bae, 0x10020)
	/tmp/workdir/go/src/os/wait6_netbsd.go:16 +0x57 fp=0x9692e4c sp=0x9692e18 pc=0x80f8907
os.(*Process).blockUntilWaitable(0x93eb0e0)
	/tmp/workdir/go/src/os/wait_wait6.go:20 +0x31 fp=0x9692e68 sp=0x9692e4c pc=0x80f8961
os.(*Process).wait(0x93eb0e0)
	/tmp/workdir/go/src/os/exec_unix.go:22 +0x28 fp=0x9692ea4 sp=0x9692e68 pc=0x80f1288
os.(*Process).Wait(...)
	/tmp/workdir/go/src/os/exec.go:132
os/exec.(*Cmd).Wait(0x96aa9c0)
	/tmp/workdir/go/src/os/exec/exec.go:887 +0x36 fp=0x9692edc sp=0x9692ea4 pc=0x81a2916
os/exec.(*Cmd).Run(0x96aa9c0)
	/tmp/workdir/go/src/os/exec/exec.go:587 +0x43 fp=0x9692eec sp=0x9692edc pc=0x81a1653
cmd/go_test.(*testgoData).doRun(0x920c540, {0x978b5b0, 0x2, 0x2})
	/tmp/workdir/go/src/cmd/go/go_test.go:496 +0x25c fp=0x9692f34 sp=0x9692eec pc=0x8643ffc
cmd/go_test.(*testgoData).runFail(0x920c540, {0x978b5b0, 0x2, 0x2})
	/tmp/workdir/go/src/cmd/go/go_test.go:522 +0x47 fp=0x9692f68 sp=0x9692f34 pc=0x86444d7
cmd/go_test.TestNeedVersion(0x92305a0)
	/tmp/workdir/go/src/cmd/go/go_test.go:2112 +0x161 fp=0x9692f9c sp=0x9692f68 pc=0x8651c41
testing.tRunner(0x92305a0, 0x879d764)
2022-10-29 04:48 netbsd-amd64-9_0 go@e09bbaec cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54373
https://vcs-test.golang.org rerouted to https://127.0.0.1:54372
go test proxy running at GOPROXY=http://127.0.0.1:54371/mod
--- FAIL: TestScript (0.09s)
    --- FAIL: TestScript/embed (467.53s)
        script_test.go:134: 2022-10-29T05:00:51Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-2324867501/tmpdir1260639308/embed236303454
        script_test.go:154: 
            # go list shows patterns and files (0.900s)
            # build embeds x.txt (0.361s)
...
            r12    0x7f7fcb7ff398
            r13    0x0
            r14    0xc0005b6680
            r15    0xc000531c00
            rip    0x46dfa3
            rflags 0x247
            cs     0x47
            fs     0x0
            gs     0x0
        script_test.go:154: FAIL: embed.txt:70: go build -x: exit status 2
2022-10-31 20:54 netbsd-386-9_0 go@e8ec68ed cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54162
https://vcs-test.golang.org rerouted to https://127.0.0.1:54161
go test proxy running at GOPROXY=http://127.0.0.1:54160/mod
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/test_shuffle (483.81s)
        script_test.go:134: 2022-10-31T21:08:38Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-2941969142/tmpdir3998068139/test_shuffle196298402
        script_test.go:154: 
            # Shuffle order of tests and benchmarks
            # Run tests (4.523s)
...
            edi    0x90000fc
            esi    0x2
            ebp    0xffffffff
            esp    0xb0ddfe3c
            eip    0x80b3b67
            eflags 0x247
            cs     0x17
            fs     0xab
            gs     0xb3
        script_test.go:154: FAIL: test_shuffle.txt:52: go test -v -bench=. -shuffle=43 foo_test.go: exit status 2
2022-11-02 18:15 netbsd-386-9_0 go@581a822a cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54239
https://vcs-test.golang.org rerouted to https://127.0.0.1:54238
go test proxy running at GOPROXY=http://127.0.0.1:54237/mod
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/test_chatty_fail (461.10s)
        script_test.go:134: 2022-11-02T18:29:22Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-487039867/tmpdir449343842/test_chatty_fail4073702858
        script_test.go:154: 
            # Run chatty tests. Assert on CONT lines. (461.097s)
            > ! go test chatty_test.go -v
            [stderr]
            SIGQUIT: quit
            PC=0x80b3b67 m=13 sigcode=0

            eax    0x4
            ebx    0x9382b40
            ecx    0x9382b40
            edx    0x9301b00
            edi    0x9000000
            esi    0x2
            ebp    0x0
            esp    0xb0bdfe3c
            eip    0x80b3b67
            eflags 0x247
            cs     0x17
            fs     0xab
            gs     0xb3
            [exit status 2]
        script_test.go:154: FAIL: test_chatty_fail.txt:2: context deadline exceeded
2022-11-03 15:15 linux-386-longtest go@582a6c2d cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:35481
https://vcs-test.golang.org rerouted to https://127.0.0.1:37103
go test proxy running at GOPROXY=http://127.0.0.1:43613/mod
2022/11/03 15:53:15 http: TLS handshake error from 127.0.0.1:54874: EOF
2022/11/03 15:54:07 http: TLS handshake error from 127.0.0.1:59208: EOF
2022/11/03 15:54:07 http: TLS handshake error from 127.0.0.1:59224: EOF
2022/11/03 15:54:07 http: TLS handshake error from 127.0.0.1:59262: EOF
2022/11/03 15:54:07 http: TLS handshake error from 127.0.0.1:59272: EOF
2022/11/03 15:54:07 http: TLS handshake error from 127.0.0.1:59312: EOF
2022/11/03 15:54:09 http: TLS handshake error from 127.0.0.1:59356: EOF
...
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/mod_replace_gopkgin (106.57s)
        script_test.go:134: 2022-11-03T15:53:13Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-2897199197/tmpdir1050944012/mod_replace_gopkgin3368784600
        script_test.go:154: 
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
...
            	15:54:55.057387 http.c:715              <= Recv header: x-frame-options: SAMEORIGIN
            	15:54:55.057392 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            	15:54:55.057397 http.c:715              <= Recv header: x-xss-protection: 0
            	15:54:55.057401 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	15:54:55.057405 http.c:715              <= Recv header: date: Thu, 03 Nov 2022 15:54:55 GMT
            	15:54:55.057410 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	15:54:55.057414 http.c:715              <= Recv header:
            	15:54:55.057477 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	fatal: unable to access 'https://go.googlesource.com/sys/': The requested URL returned error: 502
        script_test.go:154: FAIL: mod_replace_gopkgin.txt:20: go list -m gopkg.in/src-d/go-git.v4: exit status 1
2022-11-03 19:40 netbsd-386-9_0 go@c065bc70 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54578
https://vcs-test.golang.org rerouted to https://127.0.0.1:54577
go test proxy running at GOPROXY=http://127.0.0.1:54576/mod
--- FAIL: TestScript (0.10s)
    --- FAIL: TestScript/install_dep_version (471.27s)
        script_test.go:134: 2022-11-03T19:55:50Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-3385413267/tmpdir867176163/install_dep_version4174078832
        script_test.go:154: 
            # Regression test for Issue #54908. When running a go install module@version
            # with --mod=readonly moduleInfo was not setting the GoVersion for the module
...
            edi    0xb1fefebc
            esi    0x693cae6a
            ebp    0xd0
            esp    0xb1fef744
            eip    0x80b3be7
            eflags 0x247
            cs     0x17
            fs     0xab
            gs     0xb3
        script_test.go:154: FAIL: install_dep_version.txt:6: go install --mod=readonly example.com/depends/on/generics@v1.0.0: exit status 2

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`vcs-test.golang.org`)
2022-10-21 15:01 linux-amd64-longtest-race go@2b21a27f cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:45773/mod
--- FAIL: TestScript (0.04s)
    --- FAIL: TestScript/mod_missing_repo (179.52s)
        script_test.go:302: 
            # (2022-11-10T17:46:04Z)
            # Regression test for golang.org/issue/34094: modules hosted within gitlab.com
            # subgroups could not be fetched because the server returned bogus go-import
            # tags for prefixes of the module path. (179.521s)
            > [!net] skip
            > [!exec:git] skip
...
    --- FAIL: TestScript/govcs (64.61s)
        script_test.go:302: 
            # (2022-11-10T17:48:02Z)
            # GOVCS stops go get (0.084s)
            # public pattern works (0.047s)
            # private pattern works (0.036s)
            # other patterns work (for more patterns, see TestGOVCS) (0.087s)
            # bad patterns are reported (for more bad patterns, see TestGOVCSErrors) (0.059s)
            # bad GOVCS patterns do not stop commands that do not need to check VCS (0.231s)
            # svn is disallowed by default (0.029s)
...
            x
            vcs-test.golang.org/git/prefixtagtests.git/sub v0.0.10
            > stdout '^vcs-test.golang.org/git/prefixtagtests.git/sub v0.0.10$'
            > go get -u vcs-test.golang.org/git/prefixtagtests.git/sub@master
            [stderr]
            go: vcs-test.golang.org/git/prefixtagtests.git/sub@master: invalid version: git ls-remote -q origin in $WORK/gopath/pkg/mod/cache/vcs/e451b59ee62e623cdb2396e820b4c1bc9a211927958999ea4f0cc7a47ed1ab04: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
            [exit status 1]
            FAIL: testdata/script/mod_get_pseudo_prefix.txt:23: unexpected command failure
2022-10-21 16:23 linux-amd64-longtest-race go@867babe1 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:37763/mod
--- FAIL: TestScript (0.04s)
    --- FAIL: TestScript/gopath_moved_repo (94.79s)
        script_test.go:302: 
            # (2022-11-10T17:43:01Z)
            # Test that 'go get -u' reports packages whose VCS configurations do not
            # match their import paths. (0.000s)
            # We need to execute a custom Go program to break the config files.
            #
            # git will ask for a username and password when we run 'go get -d -f -u',
...
    --- FAIL: TestScript/mod_get_fossil (60.16s)
        script_test.go:302: 
            # (2022-11-10T17:43:38Z)
            # Regression test for 'go get' to ensure repositories
            # provided by fossil v2.12 and up are able to be fetched
            # and parsed correctly.
            # Verifies golang.org/issue/42323. (0.000s)
            # 'go get' for the fossil repo will fail if fossil
            # is unable to determine your fossil user. Easiest
            # way to set it for use by 'go get' is specifying
...
            # (2022-11-10T17:43:44Z)
            # golang.org/issue/34383: if a module path ends in a major-version suffix,
            # ensure that 'direct' mode can resolve the package to a module. (452.582s)
            > go get vcs-test.golang.org/git/v3pkg.git/v3@v3.0.0
            [stderr]
            go: vcs-test.golang.org/git/v3pkg.git/v3@v3.0.0: invalid version: git ls-remote -q origin in $WORK/gopath/pkg/mod/cache/vcs/bc2240a77a153ec058bb99ee8e8263c466d4e30be80e596871cb8e3091a7b279: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
            [exit status 1]
            FAIL: testdata/script/mod_get_major.txt:11: unexpected command failure
2022-10-25 03:34 linux-amd64-longtest-race go@55eaae45 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:34829/mod
--- FAIL: TestScript (0.14s)
    --- FAIL: TestScript/mod_get_fossil (60.31s)
        script_test.go:118: 2022-11-10T17:51:23Z
        script_test.go:120: $WORK=/workdir/tmp/cmd-go-test-3166731501/tmpdir3679752474/mod_get_fossil2498558234
        script_test.go:138: 
            > [!net] skip
            [condition not met]
            > [!exec:fossil] skip
            [condition not met]
...
    --- FAIL: TestScript/mod_download_insecure_redirect (121.09s)
        script_test.go:118: 2022-11-10T17:51:48Z
        script_test.go:120: $WORK=/workdir/tmp/cmd-go-test-3166731501/tmpdir3679752474/mod_download_insecure_redirect2950959006
        script_test.go:138: 
            # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE). (0.249s)
            # insecure host (120.837s)
            > env GOINSECURE=vcs-test.golang.org
            > go clean -modcache
            > go mod download vcs-test.golang.org/insecure/go/insecure@latest
            [stderr]
...
            #  master is a merge commit with both tags as parents
            #
            # The pseudo-version hence sorts immediately after v0.2.2 rather
            # than v0.2.1, even though the v0.2.2 tag is not on master. (454.239s)
            > go get vcs-test.golang.org/git/tagtests.git@master
            [stderr]
            go: vcs-test.golang.org/git/tagtests.git@master: invalid version: git ls-remote -q origin in /workdir/tmp/cmd-go-test-3166731501/tmpdir3679752474/mod_get_pseudo_other_branch741382023/gopath/pkg/mod/cache/vcs/8c9f0c2a9f95cd56bcb6fd6857ca992bb64e10f3a5accdc972d61e272582b6df: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
        script_test.go:138: FAIL: mod_get_pseudo_other_branch.txt:20: go get vcs-test.golang.org/git/tagtests.git@master: exit status 1
2022-10-25 16:49 linux-amd64-longtest-race go@90a67d05 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:36059
https://vcs-test.golang.org rerouted to https://127.0.0.1:40367
go test proxy running at GOPROXY=http://127.0.0.1:34113/mod
2022/11/10 17:50:44 http: TLS handshake error from 127.0.0.1:51004: read tcp 127.0.0.1:40367->127.0.0.1:51004: read: connection reset by peer
2022/11/10 17:51:03 http: TLS handshake error from 127.0.0.1:46530: EOF
2022/11/10 17:51:03 http: TLS handshake error from 127.0.0.1:46502: EOF
==================
WARNING: DATA RACE
Write at 0x00c00021e818 by goroutine 14469:
  cmd/go/internal/vcweb.(*Server).HandleScript.func1()
...
--- FAIL: TestScript (0.17s)
    --- FAIL: TestScript/mod_auth (0.41s)
        script_test.go:134: 2022-11-10T17:51:12Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1270676920/tmpdir3796699320/mod_auth3453790026
        script_test.go:154: 
            > [!net] skip
            [condition not met]
            > env GO111MODULE=on
            > env GOPROXY=direct
            > env GOSUMDB=off
...
            > env GOPROXY=direct
            > env GOSUMDB=off
            # Regression test for golang.org/issue/27171: after resolving an older
            # pseudo-version of a commit, future resolution of that commit by hash should
            # choose the highest appropriate pseudo-version instead of the cached one. (60.678s)
            # If GOPROXY is 'off', lookups should use whatever pseudo-version is available. (0.086s)
            # If we can re-resolve the commit to a pseudo-version, fetching the commit by
            # hash should use the highest such pseudo-version appropriate to the commit. (73.716s)
            # If GOPROXY is 'off', lookups should use the highest pseudo-version in the cache. (0.114s)
        testing.go:1374: race detected during execution of test
2022-10-26 00:11 linux-amd64-longtest-race go@3dc13023 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:37005
https://vcs-test.golang.org rerouted to https://127.0.0.1:43457
go test proxy running at GOPROXY=http://127.0.0.1:39081/mod
2022/11/10 17:51:39 http: TLS handshake error from 127.0.0.1:38008: EOF
2022/11/10 17:51:39 http: TLS handshake error from 127.0.0.1:37992: EOF
2022/11/10 17:51:39 http: TLS handshake error from 127.0.0.1:38016: EOF
2022/11/10 17:51:39 http: TLS handshake error from 127.0.0.1:38056: read tcp 127.0.0.1:43457->127.0.0.1:38056: read: connection reset by peer
2022/11/10 17:51:39 http: TLS handshake error from 127.0.0.1:38042: read tcp 127.0.0.1:43457->127.0.0.1:38042: read: connection reset by peer
==================
WARNING: DATA RACE
...
--- FAIL: TestScript (0.16s)
    --- FAIL: TestScript/gcflags_patterns (9.97s)
        script_test.go:134: 2022-11-10T17:53:02Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-870516378/tmpdir2527758096/gcflags_patterns159141515
        script_test.go:154: 
            > env GO111MODULE=off
            > [!compiler:gc] skip 'using -gcflags and -ldflags'
            [condition not met]
            > [short] skip
            [condition not met]
...
            # to the equivalent +incompatible version, not a pseudo-version with a different
            # major version. (16.868s)
            # 'go get' for a mismatched major version with a go.mod file should error out,
            # not resolve to a pseudo-version with a different major version. (0.487s)
            # An invalid +incompatible suffix for a canonical version should error out,
            # not resolve to a pseudo-version.
            #
            # TODO(bcmills): The "outside" view for this failure mode is missing its import stack.
            # Figure out why and fix it. (1.030s)
        testing.go:1374: race detected during execution of test
2022-10-26 22:20 linux-amd64-longtest-race go@ed24b37f cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:38953
https://vcs-test.golang.org rerouted to https://127.0.0.1:41287
go test proxy running at GOPROXY=http://127.0.0.1:32981/mod
2022/11/10 17:54:40 http: TLS handshake error from 127.0.0.1:51400: read tcp 127.0.0.1:41287->127.0.0.1:51400: read: connection reset by peer
2022/11/10 17:54:41 http: TLS handshake error from 127.0.0.1:51422: EOF
2022/11/10 17:54:41 http: TLS handshake error from 127.0.0.1:51406: EOF
2022/11/10 17:54:41 http: TLS handshake error from 127.0.0.1:51456: read tcp 127.0.0.1:41287->127.0.0.1:51456: read: connection reset by peer
--- FAIL: TestScript (0.16s)
    --- FAIL: TestScript/test_fuzz_mutator (2477.54s)
        script_test.go:134: 2022-11-10T17:53:23Z
...
            fuzz: elapsed: 40m51s, execs: 111 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 40m54s, execs: 111 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 40m57s, execs: 111 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 41m0s, execs: 111 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 41m3s, execs: 111 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 41m6s, execs: 111 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 41m9s, execs: 111 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 41m12s, execs: 111 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 41m15s, execs: 111 (0/sec), new interesting: 0 (total: 1)
        script_test.go:154: FAIL: test_fuzz_mutator.txt:12: go test -fuzz=FuzzA -fuzztime=100x -parallel=1 -log=fuzz: signal: killed
2022-10-28 14:23 linux-amd64-longtest-race go@99862cd5 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:40667
https://vcs-test.golang.org rerouted to https://127.0.0.1:46617
go test proxy running at GOPROXY=http://127.0.0.1:40687/mod
2022/11/10 17:41:00 http: TLS handshake error from 127.0.0.1:55654: read tcp 127.0.0.1:46617->127.0.0.1:55654: read: connection reset by peer
==================
WARNING: DATA RACE
Read at 0x00c0000cc118 by goroutine 6204:
  cmd/go/internal/vcweb.(*Server).overview.func1()
      /workdir/go/src/cmd/go/internal/vcweb/vcweb.go:386 +0x1c5
  path/filepath.walkDir()
...
--- FAIL: TestScript (0.13s)
    --- FAIL: TestScript/mod_load_badzip (0.18s)
        script_test.go:134: 2022-11-10T17:41:09Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1717591876/tmpdir3367330983/mod_load_badzip2891737881
        script_test.go:154: 
            # Zip files with unexpected file names inside should be rejected. (0.172s)
        testing.go:1429: race detected during execution of test
    --- FAIL: TestScript/run_internal (4.28s)
        script_test.go:134: 2022-11-10T17:41:05Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1717591876/tmpdir3367330983/run_internal1804142924
...
            > env GOPROXY=direct
            > env GOSUMDB=off
            # Regression test for golang.org/issue/27171: after resolving an older
            # pseudo-version of a commit, future resolution of that commit by hash should
            # choose the highest appropriate pseudo-version instead of the cached one. (66.064s)
            # If GOPROXY is 'off', lookups should use whatever pseudo-version is available. (0.051s)
            # If we can re-resolve the commit to a pseudo-version, fetching the commit by
            # hash should use the highest such pseudo-version appropriate to the commit. (62.349s)
            # If GOPROXY is 'off', lookups should use the highest pseudo-version in the cache. (0.068s)
        testing.go:1429: race detected during execution of test
2022-11-01 16:45 linux-amd64-longtest-race go@5d5ed57b cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:45149/mod
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/mod_get_fossil (60.31s)
        script_test.go:270: 
            # (2022-11-10T17:49:49Z)
            # Regression test for 'go get' to ensure repositories
            # provided by fossil v2.12 and up are able to be fetched
            # and parsed correctly.
            # Verifies golang.org/issue/42323. (0.000s)
            # 'go get' for the fossil repo will fail if fossil
...
    --- FAIL: TestScript/mod_download_insecure_redirect (121.23s)
        script_test.go:270: 
            # (2022-11-10T17:49:44Z)
            # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE). (0.324s)
            # insecure host (120.904s)
            > env GOINSECURE=vcs-test.golang.org
            > go clean -modcache
            > go mod download vcs-test.golang.org/insecure/go/insecure@latest
            [stderr]
            go: module vcs-test.golang.org/insecure/go/insecure: git ls-remote -q origin in $WORK/gopath/pkg/mod/cache/vcs/a7b3b292787ccbf8e12c123e56b6ef2645bb1a8765494a8c7c0c4434893b4827: exit status 128:
...
            # will output with error:
            # go list -m: vcs-test.golang.org/git/gitrepo1.git@v1.2.3: invalid version: unknown revision v1.2.3
            # See golang/go#51312. (454.212s)
            > go list -m vcs-test.golang.org/git/gitrepo1.git@v1.2.3
            [stderr]
            go: vcs-test.golang.org/git/gitrepo1.git@v1.2.3: invalid version: git ls-remote -q origin in $WORK/gopath/pkg/mod/cache/vcs/08c5f0142cd2ee461695f026a59d62c44cb2a80cbae41f419679e3a566f62bca: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
            [exit status 1]
            FAIL: testdata/script/mod_download_git_decorate_full.txt:23: unexpected command failure
2022-11-07 21:28 linux-amd64-longtest-race go@b417f62b cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:41365
https://vcs-test.golang.org rerouted to https://127.0.0.1:40659
go test proxy running at GOPROXY=http://127.0.0.1:34829/mod
2022/11/10 17:48:37 http: TLS handshake error from 127.0.0.1:45416: EOF
==================
WARNING: DATA RACE
Write at 0x00c0002513e8 by goroutine 13622:
  cmd/go/internal/vcweb.(*Server).HandleScript.func1()
      /workdir/go/src/cmd/go/internal/vcweb/vcweb.go:326 +0x17a
  cmd/go/internal/vcweb.(*Server).HandleScript()
...
--- FAIL: TestScript (0.16s)
    --- FAIL: TestScript/mod_download_insecure_redirect (1.81s)
        script_test.go:134: 2022-11-10T17:48:37Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-2791995636/tmpdir2302056343/mod_download_insecure_redirect2993231490
        script_test.go:154: 
            # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE). (0.080s)
            # insecure host (0.746s)
            # insecure glob host (0.499s)
            # insecure multiple host (0.360s)
            # different insecure host does not fetch (0.120s)
...
            > env GOPROXY=direct
            > env GOSUMDB=off
            # Regression test for golang.org/issue/27171: after resolving an older
            # pseudo-version of a commit, future resolution of that commit by hash should
            # choose the highest appropriate pseudo-version instead of the cached one. (65.793s)
            # If GOPROXY is 'off', lookups should use whatever pseudo-version is available. (0.076s)
            # If we can re-resolve the commit to a pseudo-version, fetching the commit by
            # hash should use the highest such pseudo-version appropriate to the commit. (70.334s)
            # If GOPROXY is 'off', lookups should use the highest pseudo-version in the cache. (0.089s)
        testing.go:1441: race detected during execution of test
2022-11-08 13:51 netbsd-386-9_0 go@5b42f89e cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54633
https://vcs-test.golang.org rerouted to https://127.0.0.1:54632
go test proxy running at GOPROXY=http://127.0.0.1:54631/mod
--- FAIL: TestScript (0.13s)
    --- FAIL: TestScript/embed_brackets (456.78s)
        script_test.go:134: 2022-11-08T14:07:15Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-138578643/tmpdir3901849774/embed_brackets3768533494
        script_test.go:154: 
            # issue 53314 (456.779s)
            > [GOOS:windows] skip
...
            edi    0x90000fc
            esi    0x2
            ebp    0x0
            esp    0xb0bffe44
            eip    0x80b3a67
            eflags 0x247
            cs     0x17
            fs     0xab
            gs     0xb3
        script_test.go:154: FAIL: embed_brackets.txt:4: go build: exit status 2
2022-11-08 14:15 netbsd-amd64-9_0 go@be3184c4 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54053
https://vcs-test.golang.org rerouted to https://127.0.0.1:54052
go test proxy running at GOPROXY=http://127.0.0.1:54051/mod
--- FAIL: TestScript (0.10s)
    --- FAIL: TestScript/ldflag (471.81s)
        script_test.go:134: 2022-11-08T14:27:41Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-4047430472/tmpdir2378054112/ldflag3862562146
        script_test.go:154: 
            # Issue #42565 (0.000s)
            # We can't build package bad, which uses #cgo LDFLAGS. (0.125s)
...
            r12    0x0
            r13    0x6
            r14    0xc0004821a0
            r15    0x1000000000
            rip    0x46db03
            rflags 0x203
            cs     0x47
            fs     0x0
            gs     0x0
        script_test.go:154: FAIL: ldflag.txt:13: go build: exit status 2
2022-11-14 01:28 netbsd-386-9_0 go@2041bde2 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:53988
https://vcs-test.golang.org rerouted to https://127.0.0.1:53987
go test proxy running at GOPROXY=http://127.0.0.1:53986/mod
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/mod_install_pkg_version (481.22s)
        script_test.go:134: 2022-11-14T01:39:45Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-110463997/tmpdir3469041121/mod_install_pkg_version4231205437
        script_test.go:154: 
            # 'go install pkg@version' works outside a module. (0.530s)
            # 'go install pkg@version' reports an error if modules are disabled. (0.014s)
...
            edi    0x0
            esi    0x2
            ebp    0x0
            esp    0xb09ffe44
            eip    0x80b3af7
            eflags 0x247
            cs     0x17
            fs     0xab
            gs     0xb3
        script_test.go:154: FAIL: mod_install_pkg_version.txt:33: go install example.com/cmd/a@latest: exit status 2
2022-11-14 01:28 netbsd-amd64-9_0 go@2041bde2 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54559
https://vcs-test.golang.org rerouted to https://127.0.0.1:54558
go test proxy running at GOPROXY=http://127.0.0.1:54557/mod
--- FAIL: TestScript (0.12s)
    --- FAIL: TestScript/run_hello_pkg (479.98s)
        script_test.go:134: 2022-11-14T01:40:52Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-1413911807/tmpdir2409084694/run_hello_pkg1438303973
        script_test.go:154: 
            > go run m/hello
            [stderr]
...
            r12    0x0
            r13    0x1
            r14    0xc0004821a0
            r15    0x1
            rip    0x46db23
            rflags 0x203
            cs     0x47
            fs     0x0
            gs     0x0
        script_test.go:154: FAIL: run_hello_pkg.txt:1: go run m/hello: exit status 2
2022-11-14 05:09 linux-386-longtest go@d092f597 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:42761
https://vcs-test.golang.org rerouted to https://127.0.0.1:33981
go test proxy running at GOPROXY=http://127.0.0.1:35837/mod
2022/11/14 05:47:56 http: TLS handshake error from 127.0.0.1:38986: EOF
2022/11/14 05:48:27 http: TLS handshake error from 127.0.0.1:37450: EOF
2022/11/14 05:48:27 http: TLS handshake error from 127.0.0.1:37412: EOF
2022/11/14 05:48:28 http: TLS handshake error from 127.0.0.1:37428: EOF
2022/11/14 05:48:28 http: TLS handshake error from 127.0.0.1:37466: EOF
2022/11/14 05:48:28 http: TLS handshake error from 127.0.0.1:37474: EOF
2022/11/14 05:48:28 http: TLS handshake error from 127.0.0.1:37490: read tcp 127.0.0.1:33981->127.0.0.1:37490: read: connection reset by peer
...
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/mod_replace_gopkgin (1484.23s)
        script_test.go:134: 2022-11-14T05:47:55Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-4269327661/tmpdir3674476494/mod_replace_gopkgin1245759689
        script_test.go:154: 
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
...
            # as replacements for gopkg.in/[…].v4.
            # As a special case, we continue to accept those. (2.154s)
            # A mismatched gopkg.in path should not be able to replace a different major version. (1025.958s)
            > cd ../3-to-gomod-4
            > ! go list -m gopkg.in/src-d/go-git.v3
            [stderr]
            go: gopkg.in/src-d/go-git.v3@v3.2.0: unrecognized import path "gopkg.in/src-d/go-git.v3": https fetch: Get "https://gopkg.in/src-d/go-git.v3?go-get=1": read tcp 10.128.0.91:53628->185.125.188.236:443: read: connection timed out
            [exit status 1]
            > stderr '^go: gopkg\.in/src-d/go-git\.v3@v3\.2\.0 \(replaced by gopkg\.in/src-d/go-git\.v3@v3\.0\.0-20190801152248-0d1a009cbb60\): version "v3\.0\.0-20190801152248-0d1a009cbb60" invalid: go\.mod has non-\.\.\.\.v3 module path "gopkg\.in/src-d/go-git\.v4" at revision 0d1a009cbb60$'
        script_test.go:154: FAIL: mod_replace_gopkgin.txt:38: stderr '^go: gopkg\.in/src-d/go-git\.v3@v3\.2\.0 \(replaced by gopkg\.in/src-d/go-git\.v3@v3\.0\.0-20190801152248-0d1a009cbb60\): version "v3\.0\.0-20190801152248-0d1a009cbb60" invalid: go\.mod has non-\.\.\.\.v3 module path "gopkg\.in/src-d/go-git\.v4" at revision 0d1a009cbb60$': no match for `(?m)^go: gopkg\.in/src-d/go-git\.v3@v3\.2\.0 \(replaced by gopkg\.in/src-d/go-git\.v3@v3\.0\.0-20190801152248-0d1a009cbb60\): version "v3\.0\.0-20190801152248-0d1a009cbb60" invalid: go\.mod has non-\.\.\.\.v3 module path "gopkg\.in/src-d/go-git\.v4" at revision 0d1a009cbb60$` in stderr
2022-11-14 05:09 linux-amd64-longtest-race go@d092f597 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:35029
https://vcs-test.golang.org rerouted to https://127.0.0.1:41913
go test proxy running at GOPROXY=http://127.0.0.1:42403/mod
2022/11/14 06:23:36 http: TLS handshake error from 127.0.0.1:39924: EOF
--- FAIL: TestScript (0.16s)
    --- FAIL: TestScript/mod_replace_gopkgin (32.86s)
        script_test.go:134: 2022-11-14T06:23:28Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-2370016582/tmpdir3745845637/mod_replace_gopkgin3595297536
        script_test.go:154: 
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
            # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
            # specifying […].vN and a compatible version should succeed, even if
            # the replacement path is not a gopkg.in path. (32.573s)
            > cd 4-to-4
            > go list -m gopkg.in/src-d/go-git.v4
            [stderr]
            go: gopkg.in/src-d/go-git.v4@v4.13.1 requires
            	gopkg.in/check.v1@v1.0.0-20180628173108-788fd7840127: unrecognized import path "gopkg.in/check.v1": https fetch: Get "https://gopkg.in/check.v1?go-get=1": dial tcp 185.125.188.236:443: i/o timeout
        script_test.go:154: FAIL: mod_replace_gopkgin.txt:20: go list -m gopkg.in/src-d/go-git.v4: exit status 1
2022-11-14 05:30 linux-386-longtest go@c55d1841 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:35463
https://vcs-test.golang.org rerouted to https://127.0.0.1:35205
go test proxy running at GOPROXY=http://127.0.0.1:33381/mod
2022/11/14 06:04:51 http: TLS handshake error from 127.0.0.1:54034: read tcp 127.0.0.1:35205->127.0.0.1:54034: read: connection reset by peer
2022/11/14 06:04:51 http: TLS handshake error from 127.0.0.1:54032: EOF
2022/11/14 06:04:51 http: TLS handshake error from 127.0.0.1:54058: read tcp 127.0.0.1:35205->127.0.0.1:54058: read: connection reset by peer
2022/11/14 06:04:51 http: TLS handshake error from 127.0.0.1:54072: EOF
2022/11/14 06:04:52 http: TLS handshake error from 127.0.0.1:54110: EOF
2022/11/14 06:04:52 http: TLS handshake error from 127.0.0.1:54112: EOF
2022/11/14 06:04:53 http: TLS handshake error from 127.0.0.1:54246: read tcp 127.0.0.1:35205->127.0.0.1:54246: read: connection reset by peer
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/mod_replace_gopkgin (33.03s)
        script_test.go:134: 2022-11-14T06:04:32Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-3807699321/tmpdir4186387784/mod_replace_gopkgin876446953
        script_test.go:154: 
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
            # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
            # specifying […].vN and a compatible version should succeed, even if
            # the replacement path is not a gopkg.in path. (32.877s)
            > cd 4-to-4
            > go list -m gopkg.in/src-d/go-git.v4
            [stderr]
            go: gopkg.in/src-d/go-git.v4@v4.13.1 requires
            	gopkg.in/check.v1@v1.0.0-20180628173108-788fd7840127: unrecognized import path "gopkg.in/check.v1": https fetch: Get "https://gopkg.in/check.v1?go-get=1": dial tcp 185.125.188.113:443: i/o timeout
        script_test.go:154: FAIL: mod_replace_gopkgin.txt:20: go list -m gopkg.in/src-d/go-git.v4: exit status 1
2022-11-14 05:30 linux-amd64-longtest go@c55d1841 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:34377
https://vcs-test.golang.org rerouted to https://127.0.0.1:38467
go test proxy running at GOPROXY=http://127.0.0.1:37731/mod
2022/11/14 05:51:24 http: TLS handshake error from 127.0.0.1:46016: read tcp 127.0.0.1:38467->127.0.0.1:46016: read: connection reset by peer
2022/11/14 05:51:41 http: TLS handshake error from 127.0.0.1:51098: EOF
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_replace_gopkgin (1443.23s)
        script_test.go:134: 2022-11-14T05:51:22Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-4248399153/tmpdir2080099949/mod_replace_gopkgin626830238
        script_test.go:154: 
...
            	06:14:43.841084 http.c:756              == Info: After 84469ms connect time, move on!
            	06:14:43.841131 http.c:756              == Info: connect to 185.125.188.113 port 443 failed: Connection timed out
            	06:14:43.841156 http.c:756              == Info:   Trying 185.125.188.128:443...
            	06:15:26.084536 http.c:756              == Info: After 42202ms connect time, move on!
            	06:15:26.084579 http.c:756              == Info: connect to 185.125.188.128 port 443 failed: Connection timed out
            	06:15:26.084614 http.c:756              == Info: Failed to connect to gopkg.in port 443: Connection timed out
            	�
            	06:15:26.084626 http.c:756              == Info: Closing connection 0
            	fatal: unable to access 'https://gopkg.in/src-d/go-billy.v4/': Failed to connect to gopkg.in port 443: Connection timed out
        script_test.go:154: FAIL: mod_replace_gopkgin.txt:20: go list -m gopkg.in/src-d/go-git.v4: exit status 1
2022-11-14 18:35 linux-amd64-longtest go@74b6a220 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44011
https://vcs-test.golang.org rerouted to https://127.0.0.1:42077
go test proxy running at GOPROXY=http://127.0.0.1:37365/mod
2022/11/14 19:09:24 http: TLS handshake error from 127.0.0.1:39558: EOF
2022/11/14 19:09:24 http: TLS handshake error from 127.0.0.1:39594: EOF
2022/11/14 19:09:24 http: TLS handshake error from 127.0.0.1:39584: read tcp 127.0.0.1:42077->127.0.0.1:39584: read: connection reset by peer
2022/11/14 19:09:24 http: TLS handshake error from 127.0.0.1:39582: read tcp 127.0.0.1:42077->127.0.0.1:39582: read: connection reset by peer
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/get_dash_t (120.81s)
        script_test.go:134: 2022-11-14T19:09:55Z
...
            19:11:56.041921 http.c:715              <= Recv header: x-xss-protection: 0
            19:11:56.041924 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            19:11:56.041926 http.c:715              <= Recv header: date: Mon, 14 Nov 2022 19:11:56 GMT
            19:11:56.041931 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            19:11:56.041933 http.c:715              <= Recv header:
            19:11:56.041986 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
            fatal: error reading section header 'shallow-info'
            package golang.org/x/build/gerrit: exit status 128
        script_test.go:154: FAIL: get_dash_t.txt:7: go get -v -t github.com/rsc/go-get-issue-8181/a github.com/rsc/go-get-issue-8181/b: exit status 1
2022-11-15 23:48 netbsd-amd64-9_0 go@c085c6cb cmd/go.TestIssue22588 (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54055
https://vcs-test.golang.org rerouted to https://127.0.0.1:54054
go test proxy running at GOPROXY=http://127.0.0.1:54053/mod
--- FAIL: TestIssue22588 (460.37s)
    go_test.go:2399: running testgo [list -f {{.Stale}}:{{.StaleReason}} runtime]
    go_test.go:2399: standard output:
    go_test.go:2399: false:

    go_test.go:2405: running testgo [list -f={{.Stale}} runtime]
    exec.go:146: test timed out while running command: /tmp/workdir/tmp/cmd-go-test-4046611502/tmpdir730608668/testbin/go list -f={{.Stale}} runtime
...
        r14    0xc000190ea0
        r15    0x7f7ff7e50000
        rip    0x46dcc3
        rflags 0x203
        cs     0x47
        fs     0x0
        gs     0x0

    go_test.go:2405: go [list -f={{.Stale}} runtime] failed unexpectedly in /tmp/workdir/go/src/cmd/go: exit status 2
2022/11/16 00:06:42 unexpected files left in tmpdir: [go-build2147833123]
2022-11-16 19:00 netbsd-amd64-9_0 go@cd9d26f0 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54015
https://vcs-test.golang.org rerouted to https://127.0.0.1:54014
go test proxy running at GOPROXY=http://127.0.0.1:54013/mod
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/test_no_tests (469.88s)
        script_test.go:134: 2022-11-16T19:13:06Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-2349301357/tmpdir4236086723/test_no_tests446898297
        script_test.go:154: 
            # Tests issue #26242 (469.880s)
            > go test testnorun
...
            r12    0x0
            r13    0x4
            r14    0xc0005829c0
            r15    0x7e5f2b42c000
            rip    0x46e603
            rflags 0x203
            cs     0x47
            fs     0x0
            gs     0x0
        script_test.go:154: FAIL: test_no_tests.txt:3: go test testnorun: exit status 2
2022-11-16 21:38 netbsd-386-9_0 go@5bf9aeba cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54273
https://vcs-test.golang.org rerouted to https://127.0.0.1:54272
go test proxy running at GOPROXY=http://127.0.0.1:54271/mod
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/vet (474.19s)
        script_test.go:134: 2022-11-16T22:15:17Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-314204183/tmpdir2464553161/vet708466984
        script_test.go:154: 
            # Package with external tests (0.581s)
            # With tags (2.126s)
...
            edi    0x0
            esi    0x2
            ebp    0x0
            esp    0xaebffe3c
            eip    0x80b3e17
            eflags 0x247
            cs     0x17
            fs     0xab
            gs     0xb3
        script_test.go:154: FAIL: vet.txt:14: go vet -printf=false m/vetpkg: exit status 2
2022-11-17 03:47 netbsd-386-9_0 go@fee0ab8b cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54298
https://vcs-test.golang.org rerouted to https://127.0.0.1:54297
go test proxy running at GOPROXY=http://127.0.0.1:54296/mod
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/list_json_fields (475.33s)
        script_test.go:134: 2022-11-17T03:59:14Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-3263124570/tmpdir3010454358/list_json_fields959188139
        script_test.go:154: 
            # Test using -json flag to specify specific fields.
            # Test -json produces "full" output by looking for multiple fields present. (0.145s)
            # Same thing for -json=true (475.183s)
            > go list -json=true .
            [stderr]
            SIGQUIT: quit
            PC=0x80b3e17 m=10 sigcode=0

            eax    0x4
            ebx    0x93c20f0
            ecx    0x93c20f0
            edx    0x93c0000
            edi    0x90000fc
            esi    0x2
            ebp    0x0
            esp    0xaafefe3c
            eip    0x80b3e17
            eflags 0x247
            cs     0x17
            fs     0xab
            gs     0xb3
        script_test.go:154: FAIL: list_json_fields.txt:8: go list -json=true .: exit status 2

watchflakes

@seankhliao seankhliao added this to the Unplanned milestone Nov 19, 2022
@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`vcs-test.golang.org`)
2022-11-17 17:02 netbsd-amd64-9_0 go@cafb49ac cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54262
https://vcs-test.golang.org rerouted to https://127.0.0.1:54261
go test proxy running at GOPROXY=http://127.0.0.1:54260/mod
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/run_vendor (477.44s)
        script_test.go:134: 2022-11-17T17:18:05Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-2178306399/tmpdir3750758213/run_vendor2899071886
        script_test.go:154: 
            # Run (477.437s)
            > env GO111MODULE=off
...
            r12    0x0
            r13    0x5
            r14    0xc00058c1a0
            r15    0x1
            rip    0x46e603
            rflags 0x203
            cs     0x47
            fs     0x0
            gs     0x0
        script_test.go:154: FAIL: run_vendor.txt:4: go run hello.go: exit status 2
2022-11-17 18:31 linux-amd64-longtest go@249e51e5 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:40311
https://vcs-test.golang.org rerouted to https://127.0.0.1:40423
go test proxy running at GOPROXY=http://127.0.0.1:34411/mod
2022/11/17 18:59:00 http: TLS handshake error from 127.0.0.1:40988: EOF
2022/11/17 18:59:00 http: TLS handshake error from 127.0.0.1:41002: EOF
2022/11/17 18:59:02 http: TLS handshake error from 127.0.0.1:48258: read tcp 127.0.0.1:40423->127.0.0.1:48258: read: connection reset by peer
2022/11/17 18:59:02 http: TLS handshake error from 127.0.0.1:48252: read tcp 127.0.0.1:40423->127.0.0.1:48252: read: connection reset by peer
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/get_404_meta (83.54s)
        script_test.go:134: 2022-11-17T18:59:31Z
...
            	19:00:53.397903 http.c:715              <= Recv header: date: Thu, 17 Nov 2022 19:00:53 GMT
            	19:00:53.397906 http.c:703              <= Recv header, 0000000091 bytes (0x0000005b)
            	19:00:53.397910 http.c:715              <= Recv header: cross-origin-opener-policy-report-only: same-origin; report-to="gfe-default_product_name"
            	19:00:53.397914 http.c:703              <= Recv header, 0000000153 bytes (0x00000099)
            	19:00:53.397918 http.c:715              <= Recv header: report-to: {"group":"gfe-default_product_name","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/default_product_name"}]}
            	19:00:53.397922 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	19:00:53.397924 http.c:715              <= Recv header:
            	19:00:53.397966 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	fatal: unable to access 'https://go.googlesource.com/sync/': The requested URL returned error: 502
        script_test.go:154: FAIL: get_404_meta.txt:12: go get bazil.org/fuse/fs/fstestutil: exit status 1
2022-11-17 18:53 netbsd-amd64-9_0 go@5f7abeca cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54237
https://vcs-test.golang.org rerouted to https://127.0.0.1:54236
go test proxy running at GOPROXY=http://127.0.0.1:54235/mod
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/embed_brackets (471.15s)
        script_test.go:134: 2022-11-17T19:11:43Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-1762418862/tmpdir1434918582/embed_brackets3657044899
        script_test.go:154: 
            # issue 53314 (471.147s)
            > [GOOS:windows] skip
...
            r12    0x0
            r13    0x3
            r14    0xc000282d00
            r15    0x77f56e089000
            rip    0x46e603
            rflags 0x203
            cs     0x47
            fs     0x0
            gs     0x0
        script_test.go:154: FAIL: embed_brackets.txt:4: go build: exit status 2
2022-11-17 19:25 netbsd-amd64-9_0 go@b74aaa14 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54084
https://vcs-test.golang.org rerouted to https://127.0.0.1:54083
go test proxy running at GOPROXY=http://127.0.0.1:54082/mod
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/list_symlink_internal (485.59s)
        script_test.go:134: 2022-11-17T19:36:50Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-2684421935/tmpdir2802966621/list_symlink_internal4291780445
        script_test.go:154: 
            > [!symlink] skip
            [condition not met]
...
            rip    0x46e603
            rflags 0x203
            cs     0x47
            fs     0x0
            gs     0x0
            [exit status 2]
            [background] go install
            [context deadline exceeded]
        script_test.go:154: FAIL: list_symlink_internal.txt:18: wait: list_symlink_internal.txt:15: go build: exit status 2
            list_symlink_internal.txt:16: go install: context deadline exceeded
2022-11-17 20:52 linux-386-longtest go@3f1bcc58 cmd/go/internal/modload.TestQueryImport (log)
vcs-test.golang.org rerouted to http://127.0.0.1:43161
https://vcs-test.golang.org rerouted to https://127.0.0.1:38667
go: finding module for package golang.org/x/net/context
go: finding module for package golang.org/x/net
go: finding module for package golang.org/x/text
go: finding module for package github.com/rsc/quote/buggy
go: finding module for package github.com/rsc/quote
go: finding module for package golang.org/x/foo/bar
--- FAIL: TestQueryImport (81.71s)
    --- FAIL: TestQueryImport/golang.org_x_net_context (73.94s)
        import_test.go:81: queryImport(_, "golang.org/x/net/context"): module golang.org/x/net/context: git ls-remote -q origin in /workdir/tmp/modload-test-3868919208/pkg/mod/cache/vcs/ed42bd05533fd84ae290a5d33ebd3695a0a2b06131beebd5450825bee8603aca: exit status 128:
            	fatal: unable to access 'https://go.googlesource.com/net/': The requested URL returned error: 502
    --- FAIL: TestQueryImport/golang.org_x_net (0.00s)
        import_test.go:88: queryImport(_, "golang.org/x/net"): error "module golang.org/x/net: git ls-remote -q origin in /workdir/tmp/modload-test-3868919208/pkg/mod/cache/vcs/ed42bd05533fd84ae290a5d33ebd3695a0a2b06131beebd5450825bee8603aca: exit status 128:\n\tfatal: unable to access 'https://go.googlesource.com/net/': The requested URL returned error: 502", want error matching `module golang.org/x/net@.* found \(v[01]\.\d+\.\d+\), but does not contain package golang.org/x/net`
2022-11-17 23:12 netbsd-amd64-9_0 go@d6171c9b cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54295
https://vcs-test.golang.org rerouted to https://127.0.0.1:54294
go test proxy running at GOPROXY=http://127.0.0.1:54293/mod
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/install_rebuild_removed (484.22s)
        script_test.go:134: 2022-11-17T23:23:49Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-1798162286/tmpdir3933662454/install_rebuild_removed816002916
        script_test.go:154: 
            > env GO111MODULE=off
            # go command should detect package staleness as source file set changes (0.147s)
...
            r12    0x7d14c81ffc48
            r13    0x40
            r14    0xc00038a1a0
            r15    0xc000388000
            rip    0x46e623
            rflags 0x203
            cs     0x47
            fs     0x0
            gs     0x0
        script_test.go:154: FAIL: install_rebuild_removed.txt:21: stale mycmd: exit status 2
2022-11-18 00:36 netbsd-amd64-9_0 go@7f75b729 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:53958
https://vcs-test.golang.org rerouted to https://127.0.0.1:53957
go test proxy running at GOPROXY=http://127.0.0.1:53956/mod
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/test_match_only_tests (476.11s)
        script_test.go:134: 2022-11-18T00:47:53Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-3730591002/tmpdir3157532053/test_match_only_tests2362403212
        script_test.go:154: 
            # Matches only tests (476.108s)
            > go test -run Test standalone_test.go
...
            r12    0x443020
            r13    0x1b
            r14    0xc000383d40
            r15    0xc000627400
            rip    0x46e623
            rflags 0x203
            cs     0x47
            fs     0x0
            gs     0x0
        script_test.go:154: FAIL: test_match_only_tests.txt:2: go test -run Test standalone_test.go: exit status 2
2022-11-18 14:31 netbsd-amd64-9_0 go@1ed636dc cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:53996
https://vcs-test.golang.org rerouted to https://127.0.0.1:53995
go test proxy running at GOPROXY=http://127.0.0.1:53994/mod
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/test_main (461.16s)
        script_test.go:134: 2022-11-18T14:57:16Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-517240406/tmpdir3536107849/test_main2780349430
        script_test.go:154: 
            # Test TestMain (0.670s)
            # Test TestMain sees testing flags (460.482s)
...
            r12    0x6
            r13    0x7
            r14    0xc0003829c0
            r15    0x8000000000000
            rip    0x46e6a3
            rflags 0x203
            cs     0x47
            fs     0x0
            gs     0x0
        script_test.go:154: FAIL: test_main.txt:8: go test standalone_testmain_flag_test.go: exit status 2
2022-11-19 16:45 linux-386-longtest go@5f60f844 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:45181
https://vcs-test.golang.org rerouted to https://127.0.0.1:43235
go test proxy running at GOPROXY=http://127.0.0.1:45355/mod
2022/11/19 17:09:12 http: TLS handshake error from 127.0.0.1:50944: EOF
2022/11/19 17:09:12 http: TLS handshake error from 127.0.0.1:50950: EOF
2022/11/19 17:09:12 http: TLS handshake error from 127.0.0.1:50986: read tcp 127.0.0.1:43235->127.0.0.1:50986: read: connection reset by peer
2022/11/19 17:09:12 http: TLS handshake error from 127.0.0.1:51002: read tcp 127.0.0.1:43235->127.0.0.1:51002: read: connection reset by peer
2022/11/19 17:09:12 http: TLS handshake error from 127.0.0.1:51072: EOF
--- FAIL: TestScript (0.04s)
    --- FAIL: TestScript/test2json_interrupt (2.39s)
...
            {"Time":"2022-11-19T17:08:51.664561426Z","Action":"output","Package":"example","Test":"FuzzInterrupt","Output":"    Failing input written to testdata/fuzz/FuzzInterrupt/110c93a88fa18c31\n"}
            {"Time":"2022-11-19T17:08:51.664565615Z","Action":"output","Package":"example","Test":"FuzzInterrupt","Output":"    To re-run:\n"}
            {"Time":"2022-11-19T17:08:51.664569895Z","Action":"output","Package":"example","Test":"FuzzInterrupt","Output":"    go test -run=FuzzInterrupt/110c93a88fa18c31\n"}
            {"Time":"2022-11-19T17:08:51.664575115Z","Action":"fail","Package":"example","Test":"FuzzInterrupt","Elapsed":0}
            {"Time":"2022-11-19T17:08:51.664581566Z","Action":"fail","Package":"example","Test":"FuzzInterrupt","Elapsed":0.07}
            {"Time":"2022-11-19T17:08:51.664591635Z","Action":"output","Package":"example","Output":"FAIL\n"}
            {"Time":"2022-11-19T17:08:51.665402725Z","Action":"fail","Package":"example","Elapsed":0.103}
            [exit status 1]
            > stdout -count=1 '"Action":"pass","Package":"example","Test":"FuzzInterrupt"'
        script_test.go:154: FAIL: test2json_interrupt.txt:12: stdout -count=1 "Action":"pass","Package":"example","Test":"FuzzInterrupt": found 0 matches for `(?m)"Action":"pass","Package":"example","Test":"FuzzInterrupt"` in stdout
2022-11-19 16:49 netbsd-386-9_0 go@72d2c4c6 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54175
https://vcs-test.golang.org rerouted to https://127.0.0.1:54174
go test proxy running at GOPROXY=http://127.0.0.1:54173/mod
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/test_skip (464.33s)
        script_test.go:134: 2022-11-19T17:06:01Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-2815377416/tmpdir3998720634/test_skip714005846
        script_test.go:154: 
            > go test -v -run Test -skip T skip_test.go
            [stderr]
            SIGQUIT: quit
            PC=0x80b3eb7 m=12 sigcode=0

            eax    0x4
            ebx    0x93024b0
            ecx    0x93024b0
            edx    0x9300240
            edi    0x90000fc
            esi    0x2
            ebp    0x0
            esp    0xa21dfe44
            eip    0x80b3eb7
            eflags 0x247
            cs     0x17
            fs     0xab
            gs     0xb3
        script_test.go:154: FAIL: test_skip.txt:1: go test -v -run Test -skip T skip_test.go: exit status 2
2022-11-19 16:50 netbsd-amd64-9_0 go@58a2db18 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54206
https://vcs-test.golang.org rerouted to https://127.0.0.1:54205
go test proxy running at GOPROXY=http://127.0.0.1:54204/mod
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/clean_cache_n (482.63s)
        script_test.go:134: 2022-11-19T17:03:13Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-2752994719/tmpdir1123916870/clean_cache_n3204852711
        script_test.go:154: 
            # We're testing cache behavior, so start with a clean GOCACHE. (0.000s)
            # Build something so that the cache gets populates (482.602s)
...
            r12    0x0
            r13    0x2
            r14    0xc000583520
            r15    0xc00001e400
            rip    0x46e6a3
            rflags 0x203
            cs     0x47
            fs     0x0
            gs     0x0
        script_test.go:154: FAIL: clean_cache_n.txt:5: go build main.go: exit status 2
2022-11-19 16:50 windows-amd64-longtest go@58a2db18 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54031
https://vcs-test.golang.org rerouted to https://127.0.0.1:54032
go test proxy running at GOPROXY=http://127.0.0.1:54033/mod
--- FAIL: TestScript (0.15s)
    --- FAIL: TestScript/test_fuzz_mutator (2472.10s)
        script_test.go:134: 2022-11-19T18:29:47Z
        script_test.go:136: $WORK=C:\Users\gopher\AppData\Local\Temp\1\cmd-go-test-545967725\tmpdir2602773748\test_fuzz_mutator3453940057
        script_test.go:154: 
            > [!fuzz] skip
            [condition not met]
...
            fuzz: elapsed: 40m45s, execs: 110 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 40m48s, execs: 110 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 40m51s, execs: 110 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 40m54s, execs: 110 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 40m57s, execs: 110 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 41m0s, execs: 110 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 41m3s, execs: 110 (0/sec), new interesting: 0 (total: 1)
            fuzz: elapsed: 41m6s, execs: 110 (0/sec), new interesting: 0 (total: 1)
        script_test.go:154: FAIL: test_fuzz_mutator.txt:12: go test -fuzz=FuzzA -fuzztime=100x -parallel=1 -log=fuzz: exit status 1
2022/11/19 19:11:19 unexpected files left in tmpdir: [tmpdir2602773748]

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`vcs-test.golang.org`)
2022-10-21 19:37 linux-amd64-longtest-race go@99fcacfe cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:43985/mod
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/mod_get_fossil (60.32s)
        script_test.go:302: 
            # (2022-11-10T17:48:08Z)
            # Regression test for 'go get' to ensure repositories
            # provided by fossil v2.12 and up are able to be fetched
            # and parsed correctly.
            # Verifies golang.org/issue/42323. (0.000s)
            # 'go get' for the fossil repo will fail if fossil
...
    --- FAIL: TestScript/gopath_moved_repo (65.72s)
        script_test.go:302: 
            # (2022-11-10T17:50:22Z)
            # Test that 'go get -u' reports packages whose VCS configurations do not
            # match their import paths. (0.000s)
            # We need to execute a custom Go program to break the config files.
            #
            # git will ask for a username and password when we run 'go get -d -f -u',
            # so we also need to set GIT_ASKPASS. Conveniently, a single binary can
            # perform both tasks! (0.602s)
...
            #
            # The pseudo-version is based on sub/v0.0.10, since v0.2.0 doesn't
            # contain the prefix. (453.607s)
            > go get vcs-test.golang.org/git/prefixtagtests.git/sub
            [stderr]
            go: module vcs-test.golang.org/git/prefixtagtests.git/sub: git ls-remote -q origin in $WORK/gopath/pkg/mod/cache/vcs/e451b59ee62e623cdb2396e820b4c1bc9a211927958999ea4f0cc7a47ed1ab04: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
            [exit status 1]
            FAIL: testdata/script/mod_get_pseudo_prefix.txt:19: unexpected command failure
2022-10-21 19:41 linux-amd64-longtest-race go@67403a30 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:39253/mod
--- FAIL: TestScript (0.04s)
    --- FAIL: TestScript/govcs (65.40s)
        script_test.go:302: 
            # (2022-11-10T17:49:57Z)
            # GOVCS stops go get (0.099s)
            # public pattern works (0.037s)
            # private pattern works (0.053s)
            # other patterns work (for more patterns, see TestGOVCS) (0.082s)
            # bad patterns are reported (for more bad patterns, see TestGOVCSErrors) (0.071s)
...
    --- FAIL: TestScript/get_insecure_redirect (61.00s)
        script_test.go:302: 
            # (2022-11-10T17:50:05Z)
            # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE).
            # golang.org/issue/34049: 'go get' would panic in case of an insecure redirect in GOPATH mode (61.001s)
            > [!net] skip
            > [!exec:git] skip
            > env GO111MODULE=off
            > ! go get -d vcs-test.golang.org/insecure/go/insecure
            [stderr]
...
            #
            # The pseudo-version hence sorts immediately after v0.2.2 rather
            # than v0.2.1, even though the v0.2.2 tag is not on master. (453.184s)
            > go get vcs-test.golang.org/git/tagtests.git@master
            [stderr]
            go: vcs-test.golang.org/git/tagtests.git@master: invalid version: git ls-remote -q origin in $WORK/gopath/pkg/mod/cache/vcs/8c9f0c2a9f95cd56bcb6fd6857ca992bb64e10f3a5accdc972d61e272582b6df: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
            [exit status 1]
            FAIL: testdata/script/mod_get_pseudo_other_branch.txt:20: unexpected command failure
2022-10-26 19:50 linux-amd64-longtest-race go@1c72ee7f cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:45417
https://vcs-test.golang.org rerouted to https://127.0.0.1:33521
go test proxy running at GOPROXY=http://127.0.0.1:46463/mod
2022/11/10 17:49:01 http: TLS handshake error from 127.0.0.1:34350: read tcp 127.0.0.1:33521->127.0.0.1:34350: read: connection reset by peer
2022/11/10 17:49:04 http: TLS handshake error from 127.0.0.1:34400: read tcp 127.0.0.1:33521->127.0.0.1:34400: read: connection reset by peer
==================
WARNING: DATA RACE
Read at 0x00c00020c268 by goroutine 18410:
  cmd/go/internal/vcweb.(*Server).overview.func1()
      /workdir/go/src/cmd/go/internal/vcweb/vcweb.go:386 +0x1c5
...
--- FAIL: TestScript (0.16s)
    --- FAIL: TestScript/mod_list_upgrade_pseudo (0.35s)
        script_test.go:134: 2022-11-10T17:50:40Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-4066609129/tmpdir1152922537/mod_list_upgrade_pseudo3855931337
        script_test.go:154: 
            > env GO111MODULE=on
            # For this test module there are three versions:
            #   * v0.1.1-0.20190429073117-b5426c86b553
            #   * v0.1.0
            #   * v0.0.0-20190430073000-30950c05d534
...
            > env GOPROXY=direct
            > env GOSUMDB=off
            # Regression test for golang.org/issue/27171: after resolving an older
            # pseudo-version of a commit, future resolution of that commit by hash should
            # choose the highest appropriate pseudo-version instead of the cached one. (65.304s)
            # If GOPROXY is 'off', lookups should use whatever pseudo-version is available. (0.059s)
            # If we can re-resolve the commit to a pseudo-version, fetching the commit by
            # hash should use the highest such pseudo-version appropriate to the commit. (33.910s)
            # If GOPROXY is 'off', lookups should use the highest pseudo-version in the cache. (0.041s)
        testing.go:1429: race detected during execution of test
2022-11-09 18:43 linux-amd64-longtest-race go@a2335d05 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:39171/mod
--- FAIL: TestScript (0.04s)
    --- FAIL: TestScript/mod_get_pseudo_other_branch (171.80s)
        script_test.go:270: 
            # (2022-11-10T17:45:59Z)
            # Testing that a pseudo-version is based on the semantically-latest
            # tag that appears in any commit that is a (transitive) parent of the commit
            # supplied to 'go get', regardless of branches (0.000s)
            # For this test repository:
            #  tag v0.2.1 is most recent tag on master itself
...
    --- FAIL: TestScript/mod_missing_repo (197.51s)
        script_test.go:270: 
            # (2022-11-10T17:45:49Z)
            # Regression test for golang.org/issue/34094: modules hosted within gitlab.com
            # subgroups could not be fetched because the server returned bogus go-import
            # tags for prefixes of the module path. (197.503s)
            > [!net] skip
            > [!exec:git] skip
            > env GO111MODULE=on
            > env GOPROXY=direct
...
            # will output with error:
            # go list -m: vcs-test.golang.org/git/gitrepo1.git@v1.2.3: invalid version: unknown revision v1.2.3
            # See golang/go#51312. (454.553s)
            > go list -m vcs-test.golang.org/git/gitrepo1.git@v1.2.3
            [stderr]
            go: vcs-test.golang.org/git/gitrepo1.git@v1.2.3: invalid version: git ls-remote -q origin in $WORK/gopath/pkg/mod/cache/vcs/08c5f0142cd2ee461695f026a59d62c44cb2a80cbae41f419679e3a566f62bca: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
            [exit status 1]
            FAIL: testdata/script/mod_download_git_decorate_full.txt:23: unexpected command failure
2022-11-14 17:37 linux-386-longtest go@a650e399 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:43971
https://vcs-test.golang.org rerouted to https://127.0.0.1:40327
go test proxy running at GOPROXY=http://127.0.0.1:46765/mod
2022/11/14 18:11:54 http: TLS handshake error from 127.0.0.1:42294: EOF
2022/11/14 18:11:54 http: TLS handshake error from 127.0.0.1:42286: EOF
2022/11/14 18:11:54 http: TLS handshake error from 127.0.0.1:42346: EOF
2022/11/14 18:11:54 http: TLS handshake error from 127.0.0.1:42356: EOF
2022/11/14 18:11:54 http: TLS handshake error from 127.0.0.1:42388: EOF
2022/11/14 18:11:54 http: TLS handshake error from 127.0.0.1:42372: read tcp 127.0.0.1:40327->127.0.0.1:42372: read: connection reset by peer
2022/11/14 18:11:55 http: TLS handshake error from 127.0.0.1:42464: EOF
...
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/mod_replace_gopkgin (34.44s)
        script_test.go:134: 2022-11-14T18:11:26Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-2719307603/tmpdir2032878856/mod_replace_gopkgin1885781532
        script_test.go:154: 
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
            # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
            # specifying […].vN and a compatible version should succeed, even if
            # the replacement path is not a gopkg.in path. (34.136s)
            > cd 4-to-4
            > go list -m gopkg.in/src-d/go-git.v4
            [stderr]
            go: gopkg.in/src-d/go-git.v4@v4.13.1 requires
            	gopkg.in/check.v1@v1.0.0-20180628173108-788fd7840127: unrecognized import path "gopkg.in/check.v1": https fetch: Get "https://gopkg.in/check.v1?go-get=1": dial tcp 185.125.188.128:443: i/o timeout
        script_test.go:154: FAIL: mod_replace_gopkgin.txt:20: go list -m gopkg.in/src-d/go-git.v4: exit status 1
2022-11-14 17:37 linux-amd64-longtest go@a650e399 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:38669
https://vcs-test.golang.org rerouted to https://127.0.0.1:34291
go test proxy running at GOPROXY=http://127.0.0.1:44025/mod
2022/11/14 18:04:36 http: TLS handshake error from 127.0.0.1:57426: EOF
2022/11/14 18:04:43 http: TLS handshake error from 127.0.0.1:37696: read tcp 127.0.0.1:34291->127.0.0.1:37696: read: connection reset by peer
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/mod_replace_gopkgin (225.76s)
        script_test.go:134: 2022-11-14T18:04:20Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-3074528927/tmpdir2164484381/mod_replace_gopkgin4100494167
        script_test.go:154: 
            # Regression test for golang.org/issue/34254:
            # a clone of gopkg.in/[…].vN should be replaceable by
            # a fork hosted at corp.example.com/[…]/vN,
            # even if there is an explicit go.mod file containing the
            # gopkg.in path. (0.000s)
            # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
            # specifying […].vN and a compatible version should succeed, even if
            # the replacement path is not a gopkg.in path. (225.692s)
            > cd 4-to-4
            > go list -m gopkg.in/src-d/go-git.v4
            [stderr]
            go: gopkg.in/src-d/go-git.v4@v4.13.1 requires
            	gopkg.in/check.v1@v1.0.0-20180628173108-788fd7840127: unrecognized import path "gopkg.in/check.v1": https fetch: Get "https://gopkg.in/check.v1?go-get=1": dial tcp 185.125.188.128:443: i/o timeout
        script_test.go:154: FAIL: mod_replace_gopkgin.txt:20: go list -m gopkg.in/src-d/go-git.v4: exit status 1
2022-11-18 17:59 linux-amd64-longtest-race go@b2faff18 cmd/go (log)
vcs-test.golang.org rerouted to http://127.0.0.1:33265
https://vcs-test.golang.org rerouted to https://127.0.0.1:38441
go test proxy running at GOPROXY=http://127.0.0.1:33193/mod
2022/11/18 19:00:39 http: TLS handshake error from 127.0.0.1:58762: read tcp 127.0.0.1:38441->127.0.0.1:58762: read: connection reset by peer
2022/11/18 19:00:39 http: TLS handshake error from 127.0.0.1:58738: EOF
2022/11/18 19:00:39 http: TLS handshake error from 127.0.0.1:58754: EOF
2022/11/18 19:38:47 httptest.Server blocked in Close after 5 seconds, waiting for connections:
  *net.TCPConn 0xc0001ac2f8 127.0.0.1:37976 in state active
panic: test timed out after 45m0s
running tests:
	TestScript (44m59s)

goroutine 20353 [running]:
panic({0xe705a0, 0xc0007fc040})
	/workdir/go/src/runtime/panic.go:987 +0x3bb fp=0xc00057ff18 sp=0xc00057fe58 pc=0x44aa9b
testing.(*M).startAlarm.func1()
	/workdir/go/src/testing/testing.go:2240 +0x219 fp=0xc00057ffe0 sp=0xc00057ff18 pc=0x5bdb79
runtime.goexit()
	/workdir/go/src/runtime/asm_amd64.s:1598 +0x1 fp=0xc00057ffe8 sp=0xc00057ffe0 pc=0x482e41
created by time.goFunc
	/workdir/go/src/time/sleep.go:176 +0x48

watchflakes

@gopherbot

This comment was marked as off-topic.

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.`)
2022-11-09 18:44 linux-amd64-longtest-race go@9e0b6c11 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:43133/mod
--- FAIL: TestScript (0.04s)
    --- FAIL: TestScript/govcs (65.43s)
        script_test.go:270: 
            # (2022-11-10T17:46:57Z)
            # GOVCS stops go get (0.121s)
            # public pattern works (0.051s)
            # private pattern works (0.038s)
            # other patterns work (for more patterns, see TestGOVCS) (0.078s)
            # bad patterns are reported (for more bad patterns, see TestGOVCSErrors) (0.110s)
...
    --- FAIL: TestScript/get_insecure_redirect (59.50s)
        script_test.go:270: 
            # (2022-11-10T17:47:06Z)
            # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE).
            # golang.org/issue/34049: 'go get' would panic in case of an insecure redirect in GOPATH mode (59.495s)
            > [!net] skip
            > [!exec:git] skip
            > env GO111MODULE=off
            > ! go get -d vcs-test.golang.org/insecure/go/insecure
            [stderr]
...
            # (2022-11-10T17:49:38Z)
            # golang.org/issue/34383: if a module path ends in a major-version suffix,
            # ensure that 'direct' mode can resolve the package to a module. (454.422s)
            > go get vcs-test.golang.org/git/v3pkg.git/v3@v3.0.0
            [stderr]
            go: vcs-test.golang.org/git/v3pkg.git/v3@v3.0.0: invalid version: git ls-remote -q origin in $WORK/gopath/pkg/mod/cache/vcs/bc2240a77a153ec058bb99ee8e8263c466d4e30be80e596871cb8e3091a7b279: exit status 128:
            	fatal: unable to connect to vcs-test.golang.org:
            	vcs-test.golang.org[0: 34.110.184.62]: errno=Connection timed out
            [exit status 1]
            FAIL: testdata/script/mod_get_major.txt:11: unexpected command failure

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-03-22 21:14 linux-386-longtest go@3d28e0eb cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44363
https://vcs-test.golang.org rerouted to https://127.0.0.1:44571
go test proxy running at GOPROXY=http://127.0.0.1:33183/mod
2023/03/22 21:58:13 http: TLS handshake error from 127.0.0.1:41052: read tcp 127.0.0.1:44571->127.0.0.1:41052: read: connection reset by peer
2023/03/22 21:58:29 http: TLS handshake error from 127.0.0.1:37934: EOF
2023/03/22 21:58:29 http: TLS handshake error from 127.0.0.1:37950: EOF
2023/03/22 21:58:29 http: TLS handshake error from 127.0.0.1:37968: EOF
2023/03/22 21:58:29 http: TLS handshake error from 127.0.0.1:37962: EOF
2023/03/22 21:58:29 http: TLS handshake error from 127.0.0.1:37980: EOF
2023/03/22 21:58:30 http: TLS handshake error from 127.0.0.1:38016: EOF
...
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/get_with_git_trace (61.27s)
        script_test.go:134: 2023-03-22T21:58:40Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1540161014/tmpdir216108298/get_with_git_trace1312145881
        script_test.go:154: 
            > env GO111MODULE=off
            > env GIT_TRACE=1
            > [!net] skip
            [condition not met]
            > [!git] skip
...
            21:59:41.744774 http.c:715              <= Recv header: x-xss-protection: 0
            21:59:41.744779 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            21:59:41.744782 http.c:715              <= Recv header: date: Wed, 22 Mar 2023 21:59:41 GMT
            21:59:41.744787 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            21:59:41.744791 http.c:715              <= Recv header:
            21:59:41.744849 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
            fatal: expected flush after ref listing
            package golang.org/x/text: exit status 128
        script_test.go:154: FAIL: get_with_git_trace.txt:9: go get golang.org/x/text: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-03-31 16:05 linux-amd64-longtest go@a7fd2fab cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:43429
https://vcs-test.golang.org rerouted to https://127.0.0.1:35133
go test proxy running at GOPROXY=http://127.0.0.1:35159/mod
2023/03/31 16:32:29 http: TLS handshake error from 127.0.0.1:45366: read tcp 127.0.0.1:35133->127.0.0.1:45366: read: connection reset by peer
2023/03/31 16:32:56 http: TLS handshake error from 127.0.0.1:57166: read tcp 127.0.0.1:35133->127.0.0.1:57166: read: connection reset by peer
2023/03/31 16:32:56 http: TLS handshake error from 127.0.0.1:57168: EOF
2023/03/31 16:32:56 http: TLS handshake error from 127.0.0.1:57196: EOF
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_prefer_compatible (4.82s)
        script_test.go:134: 2023-03-31T16:32:31Z
...
    --- FAIL: TestScript/mod_init_glide (0.62s)
        script_test.go:134: 2023-03-31T16:32:45Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1622531564/tmpdir933872533/mod_init_glide1291906992
        script_test.go:154: 
            > [!net] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GO111MODULE=on
            > env GOPROXY=direct
...
            --- go.mod
            +++ go.mod.out
            @@ -1,3 +1,5 @@
             module x

             go 1.21
            +
            +require github.com/rsc/legacytest v1.1.0-pre.0.20180717164849-fb3c628075e3

        script_test.go:154: FAIL: mod_init_glide.txt:11: cmpenv go.mod go.mod.out: go.mod and go.mod.out differ

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-03-31 16:05 linux-386-longtest go@a7fd2fab cmd/go.TestGetGitDefaultBranch (log)
vcs-test.golang.org rerouted to http://127.0.0.1:35949
https://vcs-test.golang.org rerouted to https://127.0.0.1:37145
go test proxy running at GOPROXY=http://127.0.0.1:46463/mod
2023/03/31 16:31:13 http: TLS handshake error from 127.0.0.1:59972: EOF
2023/03/31 16:31:13 http: TLS handshake error from 127.0.0.1:59976: EOF
2023/03/31 16:31:13 http: TLS handshake error from 127.0.0.1:59956: EOF
2023/03/31 16:31:13 http: TLS handshake error from 127.0.0.1:59990: read tcp 127.0.0.1:37145->127.0.0.1:59990: read: connection reset by peer
2023/03/31 16:31:13 http: TLS handshake error from 127.0.0.1:60008: EOF
2023/03/31 16:31:13 http: TLS handshake error from 127.0.0.1:60002: EOF
2023/03/31 16:31:13 http: TLS handshake error from 127.0.0.1:60046: EOF
...
--- FAIL: TestGetGitDefaultBranch (0.06s)
    go_test.go:1053: running testgo [get -d github.com/rsc/go-get-default-branch]
    go_test.go:1053: standard error:
    go_test.go:1053: # cd /workdir/tmp/cmd-go-test-3692001786/gotest4116587470/src/github.com/rsc; git clone -- https://github.com/rsc/go-get-default-branch /workdir/tmp/cmd-go-test-3692001786/gotest4116587470/src/github.com/rsc/go-get-default-branch
        Cloning into '/workdir/tmp/cmd-go-test-3692001786/gotest4116587470/src/github.com/rsc/go-get-default-branch'...
        16:33:10.352628 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
        16:33:10.358913 http.c:756              == Info:   Trying 140.82.112.3:443...
        16:33:10.384331 http.c:756              == Info: connect to 140.82.112.3 port 443 failed: Connection refused
        16:33:10.384379 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
        �
        16:33:10.384391 http.c:756              == Info: Closing connection 0
        fatal: unable to access 'https://github.com/rsc/go-get-default-branch/': Failed to connect to github.com port 443: Connection refused
        package github.com/rsc/go-get-default-branch: exit status 128

    go_test.go:1053: go [get -d github.com/rsc/go-get-default-branch] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1
2023-03-31 16:05 linux-386-longtest go@a7fd2fab cmd/go.TestDefaultGOPATHGet (log)
--- FAIL: TestDefaultGOPATHGet (2.13s)
    go_test.go:1391: running testgo [get -v github.com/golang/example/hello]
    go_test.go:1391: standard error:
    go_test.go:1391: github.com/golang/example (download)
        created GOPATH=/workdir/tmp/cmd-go-test-3692001786/gotest1585319687/home/go; see 'go help gopath'
        get "golang.org/x/example/stringutil": found meta tag vcs.metaImport{Prefix:"golang.org/x/example", VCS:"git", RepoRoot:"https://go.googlesource.com/example"} at //golang.org/x/example/stringutil?go-get=1
        get "golang.org/x/example/stringutil": verifying non-authoritative meta tag
        golang.org/x/example (download)
        golang.org/x/example/stringutil
        github.com/golang/example/hello

    go_test.go:1397: running testgo [get github.com/golang/example/hello]
    go_test.go:1397: standard error:
    go_test.go:1397: # cd /workdir/tmp/cmd-go-test-3692001786/gotest1585319687/home/go/src/github.com/golang; git clone -- https://github.com/golang/example /workdir/tmp/cmd-go-test-3692001786/gotest1585319687/home/go/src/github.com/golang/example
        Cloning into '/workdir/tmp/cmd-go-test-3692001786/gotest1585319687/home/go/src/github.com/golang/example'...
        16:33:11.964391 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
        16:33:11.966955 http.c:756              == Info:   Trying 140.82.112.3:443...
        16:33:11.991552 http.c:756              == Info: connect to 140.82.112.3 port 443 failed: Connection refused
        16:33:11.991625 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
        �
        16:33:11.991637 http.c:756              == Info: Closing connection 0
        fatal: unable to access 'https://github.com/golang/example/': Failed to connect to github.com port 443: Connection refused
        package github.com/golang/example/hello: exit status 128

    go_test.go:1397: go [get github.com/golang/example/hello] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-04-03 20:02 linux-amd64-longtest go@7a5787f3 cmd/go.TestDefaultGOPATHGet (log)
go test proxy running at GOPROXY=http://127.0.0.1:40901/mod
--- FAIL: TestDefaultGOPATHGet (0.06s)
    go_test.go:1388: running testgo [get -v github.com/golang/example/hello]
    go_test.go:1388: standard error:
    go_test.go:1388: github.com/golang/example (download)
        created GOPATH=/workdir/tmp/cmd-go-test-752324973/gotest256273725/home/go; see 'go help gopath'
        # cd /workdir/tmp/cmd-go-test-752324973/gotest256273725/home/go/src/github.com/golang; git clone -- https://github.com/golang/example /workdir/tmp/cmd-go-test-752324973/gotest256273725/home/go/src/github.com/golang/example
        Cloning into '/workdir/tmp/cmd-go-test-752324973/gotest256273725/home/go/src/github.com/golang/example'...
        20:29:07.841800 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
        20:29:07.847297 http.c:756              == Info:   Trying 140.82.114.3:443...
        20:29:07.871677 http.c:756              == Info: connect to 140.82.114.3 port 443 failed: Connection refused
        20:29:07.871724 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
        �
        20:29:07.871741 http.c:756              == Info: Closing connection 0
        fatal: unable to access 'https://github.com/golang/example/': Failed to connect to github.com port 443: Connection refused
        package github.com/golang/example/hello: exit status 128

    go_test.go:1388: go [get -v github.com/golang/example/hello] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1
2023-04-03 20:02 linux-amd64-longtest go@7a5787f3 cmd/go.TestGetGitDefaultBranch (log)
--- FAIL: TestGetGitDefaultBranch (0.11s)
    go_test.go:1031: running testgo [get -d github.com/rsc/go-get-default-branch]
    go_test.go:1031: standard error:
    go_test.go:1031: # cd /workdir/tmp/cmd-go-test-752324973/gotest699648305/src/github.com/rsc; git clone -- https://github.com/rsc/go-get-default-branch /workdir/tmp/cmd-go-test-752324973/gotest699648305/src/github.com/rsc/go-get-default-branch
        Cloning into '/workdir/tmp/cmd-go-test-752324973/gotest699648305/src/github.com/rsc/go-get-default-branch'...
        20:29:10.203507 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
        20:29:10.210539 http.c:756              == Info:   Trying 140.82.114.3:443...
        20:29:10.256449 http.c:756              == Info: connect to 140.82.114.3 port 443 failed: Connection refused
        20:29:10.256507 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
        �
        20:29:10.256523 http.c:756              == Info: Closing connection 0
        fatal: unable to access 'https://github.com/rsc/go-get-default-branch/': Failed to connect to github.com port 443: Connection refused
        package github.com/rsc/go-get-default-branch: exit status 128

    go_test.go:1031: go [get -d github.com/rsc/go-get-default-branch] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1
2023-04-03 20:02 linux-amd64-longtest go@7a5787f3 cmd/go.TestIssue11457 (log)
--- FAIL: TestIssue11457 (0.39s)
    go_test.go:1001: running testgo [get -d -u rsc.io/go-get-issue-11457]
    go_test.go:1001: standard error:
    go_test.go:1001: # cd /workdir/tmp/cmd-go-test-752324973/gotest2848055601/src/rsc.io; git clone -- https://github.com/rsc/go-get-issue-11457 /workdir/tmp/cmd-go-test-752324973/gotest2848055601/src/rsc.io/go-get-issue-11457
        Cloning into '/workdir/tmp/cmd-go-test-752324973/gotest2848055601/src/rsc.io/go-get-issue-11457'...
        20:29:10.636313 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
        20:29:10.650394 http.c:756              == Info:   Trying 140.82.114.4:443...
        20:29:10.674806 http.c:756              == Info: connect to 140.82.114.4 port 443 failed: Connection refused
        20:29:10.674848 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
        �
        20:29:10.674865 http.c:756              == Info: Closing connection 0
        fatal: unable to access 'https://github.com/rsc/go-get-issue-11457/': Failed to connect to github.com port 443: Connection refused
        package rsc.io/go-get-issue-11457: exit status 128

    go_test.go:1001: go [get -d -u rsc.io/go-get-issue-11457] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-04-04 20:18 linux-386-longtest go@6d2cac12 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44687
https://vcs-test.golang.org rerouted to https://127.0.0.1:34737
go test proxy running at GOPROXY=http://127.0.0.1:34919/mod
2023/04/04 21:58:55 http: TLS handshake error from 127.0.0.1:56894: read tcp 127.0.0.1:34737->127.0.0.1:56894: read: connection reset by peer
2023/04/04 21:58:55 http: TLS handshake error from 127.0.0.1:56958: read tcp 127.0.0.1:34737->127.0.0.1:56958: read: connection reset by peer
2023/04/04 21:58:55 http: TLS handshake error from 127.0.0.1:56960: read tcp 127.0.0.1:34737->127.0.0.1:56960: read: connection reset by peer
2023/04/04 21:58:55 http: TLS handshake error from 127.0.0.1:56948: EOF
2023/04/04 21:58:55 http: TLS handshake error from 127.0.0.1:56986: EOF
2023/04/04 21:58:55 http: TLS handshake error from 127.0.0.1:56976: EOF
2023/04/04 21:58:55 http: TLS handshake error from 127.0.0.1:56962: EOF
...
--- FAIL: TestScript (0.04s)
    --- FAIL: TestScript/mod_prefer_compatible (2.86s)
        script_test.go:134: 2023-04-04T21:58:41Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-3535692901/tmpdir1944468161/mod_prefer_compatible300705515
        script_test.go:154: 
            # Regression test for golang.org/issue/34189 and golang.org/issue/34165:
            # @latest, @upgrade, and @patch should prefer compatible versions over
            # +incompatible ones, even if offered by a proxy. (0.000s)
            # github.com/russross/blackfriday v2.0.0+incompatible exists,
            # and should be resolved if we ask for v2.0 explicitly. (0.316s)
...
            go: downloading github.com/jasonkeene/export-subst v0.0.0-20180927204031-5845945ec626
            go: github.com/jasonkeene/export-subst@v0.0.0-20180927204031-5845945ec626: invalid version: git ls-remote -q origin in /workdir/tmp/cmd-go-test-3535692901/tmpdir1944468161/mod_git_export_subst3945050499/gopath/pkg/mod/cache/vcs/1ee8f7fed4d660204df7c497b07367648dd327b83e64131bcd4a33cdd23e429f: exit status 128:
            	21:58:50.004986 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            	21:58:50.008670 http.c:756              == Info:   Trying 140.82.112.4:443...
            	21:58:50.033793 http.c:756              == Info: connect to 140.82.112.4 port 443 failed: Connection refused
            	21:58:50.033839 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
            	�
            	21:58:50.033850 http.c:756              == Info: Closing connection 0
            	fatal: unable to access 'https://github.com/jasonkeene/export-subst/': Failed to connect to github.com port 443: Connection refused
        script_test.go:154: FAIL: mod_git_export_subst.txt:7: go build: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-04-04 19:08 linux-amd64-longtest-race go@d0099eff cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:39621
https://vcs-test.golang.org rerouted to https://127.0.0.1:37223
go test proxy running at GOPROXY=http://127.0.0.1:41215/mod
2023/04/04 21:20:50 http: TLS handshake error from 127.0.0.1:47206: read tcp 127.0.0.1:37223->127.0.0.1:47206: read: connection reset by peer
2023/04/04 21:20:52 http: TLS handshake error from 127.0.0.1:47252: EOF
2023/04/04 21:20:52 http: TLS handshake error from 127.0.0.1:47280: EOF
--- FAIL: TestScript (0.12s)
    --- FAIL: TestScript/get_legacy (30.17s)
        script_test.go:134: 2023-04-04T21:21:41Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1443483084/tmpdir327350324/get_legacy3922552147
...
            cannot find package "github.com/myitcv/vgo_example_compat/sub" in any of:
            	/workdir/go/src/github.com/myitcv/vgo_example_compat/sub (from $GOROOT)
            	/workdir/tmp/cmd-go-test-1443483084/tmpdir327350324/get_legacy3922552147/tmp/d2/src/github.com/myitcv/vgo_example_compat/sub (from $GOPATH)
            cannot find package "github.com/myitcv/vgo_example_compat/v2" in any of:
            	/workdir/go/src/github.com/myitcv/vgo_example_compat/v2 (from $GOROOT)
            	/workdir/tmp/cmd-go-test-1443483084/tmpdir327350324/get_legacy3922552147/tmp/d2/src/github.com/myitcv/vgo_example_compat/v2 (from $GOPATH)
            cannot find package "github.com/myitcv/vgo_example_compat/v2/sub" in any of:
            	/workdir/go/src/github.com/myitcv/vgo_example_compat/v2/sub (from $GOROOT)
            	/workdir/tmp/cmd-go-test-1443483084/tmpdir327350324/get_legacy3922552147/tmp/d2/src/github.com/myitcv/vgo_example_compat/v2/sub (from $GOPATH)
        script_test.go:154: FAIL: get_legacy.txt:43: go get github.com/myitcv/vgo_example_compat github.com/rsc/vgotest4 github.com/rsc/vgotest5: exit status 1
2023-04-04 19:08 linux-amd64-longtest-race go@d0099eff cmd/go.TestIssue10952 (log)
--- FAIL: TestIssue10952 (0.10s)
    go_test.go:1006: running testgo [get -d -u github.com/zombiezen/go-get-issue-10952]
    go_test.go:1006: standard error:
    go_test.go:1006: # cd /workdir/tmp/cmd-go-test-1443483084/gotest3230162205/src/github.com/zombiezen; git clone -- https://github.com/zombiezen/go-get-issue-10952 /workdir/tmp/cmd-go-test-1443483084/gotest3230162205/src/github.com/zombiezen/go-get-issue-10952
        Cloning into '/workdir/tmp/cmd-go-test-1443483084/gotest3230162205/src/github.com/zombiezen/go-get-issue-10952'...
        21:22:37.597606 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
        21:22:37.613631 http.c:756              == Info:   Trying 140.82.112.4:443...
        21:22:37.638536 http.c:756              == Info: connect to 140.82.112.4 port 443 failed: Connection refused
        21:22:37.638578 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
        w
        21:22:37.638588 http.c:756              == Info: Closing connection 0
        fatal: unable to access 'https://github.com/zombiezen/go-get-issue-10952/': Failed to connect to github.com port 443: Connection refused
        package github.com/zombiezen/go-get-issue-10952: exit status 128

    go_test.go:1006: go [get -d -u github.com/zombiezen/go-get-issue-10952] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1
2023-04-04 19:08 linux-amd64-longtest-race go@d0099eff cmd/go.TestIssue11457 (log)
--- FAIL: TestIssue11457 (0.50s)
    go_test.go:1023: running testgo [get -d -u rsc.io/go-get-issue-11457]
    go_test.go:1023: standard error:
    go_test.go:1023: # cd /workdir/tmp/cmd-go-test-1443483084/gotest3616793937/src/rsc.io; git clone -- https://github.com/rsc/go-get-issue-11457 /workdir/tmp/cmd-go-test-1443483084/gotest3616793937/src/rsc.io/go-get-issue-11457
        Cloning into '/workdir/tmp/cmd-go-test-1443483084/gotest3616793937/src/rsc.io/go-get-issue-11457'...
        21:22:38.638527 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
        21:22:38.643516 http.c:756              == Info:   Trying 140.82.112.4:443...
        21:22:38.668210 http.c:756              == Info: connect to 140.82.112.4 port 443 failed: Connection refused
        21:22:38.668258 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
        ~
        21:22:38.668269 http.c:756              == Info: Closing connection 0
        fatal: unable to access 'https://github.com/rsc/go-get-issue-11457/': Failed to connect to github.com port 443: Connection refused
        package rsc.io/go-get-issue-11457: exit status 128

    go_test.go:1023: go [get -d -u rsc.io/go-get-issue-11457] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1
2023-04-04 20:18 linux-amd64-longtest-race go@6d2cac12 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:39147
https://vcs-test.golang.org rerouted to https://127.0.0.1:43505
go test proxy running at GOPROXY=http://127.0.0.1:38623/mod
2023/04/04 21:19:51 http: TLS handshake error from 127.0.0.1:48528: EOF
2023/04/04 21:20:03 http: TLS handshake error from 127.0.0.1:37854: EOF
2023/04/04 21:20:03 http: TLS handshake error from 127.0.0.1:37862: EOF
2023/04/04 21:20:03 http: TLS handshake error from 127.0.0.1:37914: EOF
--- FAIL: TestScript (0.12s)
    --- FAIL: TestScript/get_legacy (32.40s)
        script_test.go:134: 2023-04-04T21:21:36Z
...
            Cloning into '/workdir/tmp/cmd-go-test-166388538/tmpdir1646575629/get_legacy630196276/tmp/d2/src/github.com/rsc/vgotest5'...
            21:22:08.243981 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            21:22:08.246265 http.c:756              == Info:   Trying 140.82.113.4:443...
            21:22:08.271551 http.c:756              == Info: connect to 140.82.113.4 port 443 failed: Connection refused
            21:22:08.271602 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
            }
            21:22:08.271614 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'https://github.com/rsc/vgotest5/': Failed to connect to github.com port 443: Connection refused
            package github.com/rsc/vgotest5: exit status 128
        script_test.go:154: FAIL: get_legacy.txt:52: go get github.com/rsc/vgotest4 github.com/rsc/vgotest5 github.com/myitcv/vgo_example_compat: exit status 1
2023-04-04 20:18 linux-amd64-longtest-race go@6d2cac12 cmd/go.TestGetGitDefaultBranch (log)
--- FAIL: TestGetGitDefaultBranch (0.10s)
    go_test.go:1053: running testgo [get -d github.com/rsc/go-get-default-branch]
    go_test.go:1053: standard error:
    go_test.go:1053: # cd /workdir/tmp/cmd-go-test-166388538/gotest2710161940/src/github.com/rsc; git clone -- https://github.com/rsc/go-get-default-branch /workdir/tmp/cmd-go-test-166388538/gotest2710161940/src/github.com/rsc/go-get-default-branch
        Cloning into '/workdir/tmp/cmd-go-test-166388538/gotest2710161940/src/github.com/rsc/go-get-default-branch'...
        21:22:13.331817 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
        21:22:13.334949 http.c:756              == Info:   Trying 140.82.113.3:443...
        21:22:13.362188 http.c:756              == Info: connect to 140.82.113.3 port 443 failed: Connection refused
        21:22:13.362232 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
        t
        21:22:13.362242 http.c:756              == Info: Closing connection 0
        fatal: unable to access 'https://github.com/rsc/go-get-default-branch/': Failed to connect to github.com port 443: Connection refused
        package github.com/rsc/go-get-default-branch: exit status 128

    go_test.go:1053: go [get -d github.com/rsc/go-get-default-branch] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1
2023-04-04 20:18 linux-amd64-longtest-race go@6d2cac12 cmd/go.TestDefaultGOPATHGet (log)
--- FAIL: TestDefaultGOPATHGet (0.13s)
    go_test.go:1391: running testgo [get -v github.com/golang/example/hello]
    go_test.go:1391: standard error:
    go_test.go:1391: github.com/golang/example (download)
        created GOPATH=/workdir/tmp/cmd-go-test-166388538/gotest1425804632/home/go; see 'go help gopath'
        # cd /workdir/tmp/cmd-go-test-166388538/gotest1425804632/home/go/src/github.com/golang; git clone -- https://github.com/golang/example /workdir/tmp/cmd-go-test-166388538/gotest1425804632/home/go/src/github.com/golang/example
        Cloning into '/workdir/tmp/cmd-go-test-166388538/gotest1425804632/home/go/src/github.com/golang/example'...
        21:22:13.766411 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
        21:22:13.800816 http.c:756              == Info:   Trying 140.82.113.4:443...
        21:22:13.826156 http.c:756              == Info: connect to 140.82.113.4 port 443 failed: Connection refused
        21:22:13.826200 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
        r
        21:22:13.826211 http.c:756              == Info: Closing connection 0
        fatal: unable to access 'https://github.com/golang/example/': Failed to connect to github.com port 443: Connection refused
        package github.com/golang/example/hello: exit status 128

    go_test.go:1391: go [get -v github.com/golang/example/hello] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-04-04 21:20 linux-amd64-longtest go@2f2b874b cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:36341
https://vcs-test.golang.org rerouted to https://127.0.0.1:34657
go test proxy running at GOPROXY=http://127.0.0.1:44169/mod
2023/04/04 21:58:46 http: TLS handshake error from 127.0.0.1:50078: EOF
2023/04/04 21:59:05 http: TLS handshake error from 127.0.0.1:55002: EOF
2023/04/04 21:59:05 http: TLS handshake error from 127.0.0.1:55022: EOF
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_sumdb_golang (0.96s)
        script_test.go:134: 2023-04-04T21:58:42Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-4159312173/tmpdir1892797545/mod_sumdb_golang3872696100
...
    --- FAIL: TestScript/mod_prefer_compatible (5.05s)
        script_test.go:134: 2023-04-04T21:58:46Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-4159312173/tmpdir1892797545/mod_prefer_compatible1966301715
        script_test.go:154: 
            # Regression test for golang.org/issue/34189 and golang.org/issue/34165:
            # @latest, @upgrade, and @patch should prefer compatible versions over
            # +incompatible ones, even if offered by a proxy. (0.000s)
            # github.com/russross/blackfriday v2.0.0+incompatible exists,
            # and should be resolved if we ask for v2.0 explicitly. (0.189s)
            # blackfriday v1.5.2 has a go.mod file, so v1.5.2 should be preferred over
...
            [stderr]
            go: rsc.io/quote@a91498bed0a73d4bb9c1fb2597925f7883bc40a7: invalid version: git ls-remote -q origin in /workdir/tmp/cmd-go-test-4159312173/tmpdir1892797545/mod_download_hash1240769479/gopath/pkg/mod/cache/vcs/5673a25ea375597bb7799aed271d658fc11bcb2aced1a8a5011c001d4c2ead3a: exit status 128:
            	21:59:04.733268 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            	21:59:04.750711 http.c:756              == Info:   Trying 140.82.114.4:443...
            	21:59:04.775510 http.c:756              == Info: connect to 140.82.114.4 port 443 failed: Connection refused
            	21:59:04.775548 http.c:756              == Info: Failed to connect to github.com port 443: Connection refused
            	�
            	21:59:04.775564 http.c:756              == Info: Closing connection 0
            	fatal: unable to access 'https://github.com/rsc/quote/': Failed to connect to github.com port 443: Connection refused
        script_test.go:154: FAIL: mod_download_hash.txt:9: go mod download rsc.io/quote@a91498bed0a73d4bb9c1fb2597925f7883bc40a7: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-04-13 15:29 linux-386-longtest go@3f747d09 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:43101
https://vcs-test.golang.org rerouted to https://127.0.0.1:45433
go test proxy running at GOPROXY=http://127.0.0.1:37459/mod
2023/04/13 15:53:46 http: TLS handshake error from 127.0.0.1:50512: EOF
2023/04/13 15:54:01 http: TLS handshake error from 127.0.0.1:51452: read tcp 127.0.0.1:45433->127.0.0.1:51452: read: connection reset by peer
2023/04/13 15:54:01 http: TLS handshake error from 127.0.0.1:51456: EOF
2023/04/13 15:54:01 http: TLS handshake error from 127.0.0.1:51460: EOF
2023/04/13 15:54:01 http: TLS handshake error from 127.0.0.1:51462: EOF
2023/04/13 15:54:01 http: TLS handshake error from 127.0.0.1:51480: EOF
2023/04/13 15:54:01 http: TLS handshake error from 127.0.0.1:51468: EOF
...
--- FAIL: TestScript (0.04s)
    --- FAIL: TestScript/get_404_meta (99.76s)
        script_test.go:134: 2023-04-13T15:54:40Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-3449584681/tmpdir319168381/get_404_meta2812190136
        script_test.go:154: 
            # golang.org/issue/13037: 'go get' was not parsing <meta> tags in 404 served over HTTPS. (99.752s)
            > [!net] skip
            [condition not met]
            > [!git] skip
            [condition not met]
...
            	15:56:20.056384 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            	15:56:20.056385 http.c:715              <= Recv header: x-xss-protection: 0
            	15:56:20.056387 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	15:56:20.056388 http.c:715              <= Recv header: date: Thu, 13 Apr 2023 15:56:20 GMT
            	15:56:20.056390 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	15:56:20.056391 http.c:715              <= Recv header:
            	15:56:20.056418 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
            	fatal: expected flush after ref listing
        script_test.go:154: FAIL: get_404_meta.txt:12: go get bazil.org/fuse/fs/fstestutil: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-04-19 21:15 linux-386-longtest go@42f89db1 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:34479
https://vcs-test.golang.org rerouted to https://127.0.0.1:42595
go test proxy running at GOPROXY=http://127.0.0.1:34029/mod
2023/04/19 21:52:09 http: TLS handshake error from 127.0.0.1:51398: EOF
2023/04/19 21:53:59 http: TLS handshake error from 127.0.0.1:39638: EOF
2023/04/19 21:53:59 http: TLS handshake error from 127.0.0.1:39626: EOF
2023/04/19 21:53:59 http: TLS handshake error from 127.0.0.1:39670: EOF
2023/04/19 21:53:59 http: TLS handshake error from 127.0.0.1:39678: EOF
2023/04/19 21:53:59 http: TLS handshake error from 127.0.0.1:39720: EOF
2023/04/19 21:53:59 http: TLS handshake error from 127.0.0.1:39732: EOF
...
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_pseudo_cache (63.21s)
        script_test.go:134: 2023-04-19T21:52:12Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-645182705/tmpdir2021788854/mod_pseudo_cache1639279081
        script_test.go:154: 
            > [!net] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GO111MODULE=on
...
            	21:54:20.046031 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            	21:54:20.046034 http.c:715              <= Recv header: x-xss-protection: 0
            	21:54:20.046038 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	21:54:20.046041 http.c:715              <= Recv header: date: Wed, 19 Apr 2023 21:54:20 GMT
            	21:54:20.046046 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	21:54:20.046048 http.c:715              <= Recv header:
            	21:54:20.046090 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
            	fatal: error reading section header 'shallow-info'
        script_test.go:154: FAIL: mod_invalid_version.txt:24: go list -m golang.org/x/text: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-04-21 18:08 linux-amd64-longtest-race go@eaecd642 cmd/go/internal/modload.TestQueryImport (log)
vcs-test.golang.org rerouted to http://127.0.0.1:34771
https://vcs-test.golang.org rerouted to https://127.0.0.1:41833
go: finding module for package golang.org/x/net/context
go: finding module for package golang.org/x/net
go: finding module for package golang.org/x/text
go: finding module for package github.com/rsc/quote/buggy
go: finding module for package github.com/rsc/quote
go: finding module for package golang.org/x/foo/bar
--- FAIL: TestQueryImport (161.36s)
    --- FAIL: TestQueryImport/golang.org_x_net_context (122.52s)
        import_test.go:81: queryImport(_, "golang.org/x/net/context"): module golang.org/x/net/context: git ls-remote -q origin in /workdir/tmp/modload-test-1329357348/pkg/mod/cache/vcs/ed42bd05533fd84ae290a5d33ebd3695a0a2b06131beebd5450825bee8603aca: exit status 128:
            	error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
            	fatal: expected flush after ref listing
    --- FAIL: TestQueryImport/golang.org_x_net (0.00s)
        import_test.go:88: queryImport(_, "golang.org/x/net"): error "module golang.org/x/net: git ls-remote -q origin in /workdir/tmp/modload-test-1329357348/pkg/mod/cache/vcs/ed42bd05533fd84ae290a5d33ebd3695a0a2b06131beebd5450825bee8603aca: exit status 128:\n\terror: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502\n\tfatal: expected flush after ref listing", want error matching `module golang.org/x/net@.* found \(v[01]\.\d+\.\d+\), but does not contain package golang.org/x/net`

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-04-24 14:00 linux-amd64-longtest go@21c2fdd9 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44373
https://vcs-test.golang.org rerouted to https://127.0.0.1:44919
go test proxy running at GOPROXY=http://127.0.0.1:35631/mod
2023/04/24 14:31:50 http: TLS handshake error from 127.0.0.1:53910: read tcp 127.0.0.1:44919->127.0.0.1:53910: read: connection reset by peer
2023/04/24 14:31:50 http: TLS handshake error from 127.0.0.1:53898: read tcp 127.0.0.1:44919->127.0.0.1:53898: read: connection reset by peer
2023/04/24 14:31:50 http: TLS handshake error from 127.0.0.1:53988: read tcp 127.0.0.1:44919->127.0.0.1:53988: read: connection reset by peer
2023/04/24 14:31:50 http: TLS handshake error from 127.0.0.1:53984: EOF
2023/04/24 14:31:51 http: TLS handshake error from 127.0.0.1:54002: read tcp 127.0.0.1:44919->127.0.0.1:54002: read: connection reset by peer
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_get_hash (214.34s)
...
            	14:35:22.062823 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            	14:35:22.062825 http.c:715              <= Recv header: x-xss-protection: 0
            	14:35:22.062828 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	14:35:22.062830 http.c:715              <= Recv header: date: Mon, 24 Apr 2023 14:35:22 GMT
            	14:35:22.062832 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	14:35:22.062834 http.c:715              <= Recv header:
            	14:35:22.062878 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
            	fatal: error reading section header 'shallow-info'
        script_test.go:154: FAIL: mod_get_hash.txt:8: go list -m golang.org/x/time@8be79e1e0910c292df4e79c241bb7e8f7e725959: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-04-24 16:49 linux-amd64-longtest go@d33a5136 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44595
https://vcs-test.golang.org rerouted to https://127.0.0.1:36595
go test proxy running at GOPROXY=http://127.0.0.1:32973/mod
2023/04/24 17:13:51 http: TLS handshake error from 127.0.0.1:47614: read tcp 127.0.0.1:36595->127.0.0.1:47614: read: connection reset by peer
2023/04/24 17:14:51 http: TLS handshake error from 127.0.0.1:33834: read tcp 127.0.0.1:36595->127.0.0.1:33834: read: connection reset by peer
2023/04/24 17:14:51 http: TLS handshake error from 127.0.0.1:33828: EOF
2023/04/24 17:14:51 http: TLS handshake error from 127.0.0.1:33848: read tcp 127.0.0.1:36595->127.0.0.1:33848: read: connection reset by peer
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/get_with_git_trace (430.84s)
        script_test.go:134: 2023-04-24T17:15:32Z
...
            17:22:43.629143 http.c:715              <= Recv header: content-length: 1613
            17:22:43.629146 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            17:22:43.629148 http.c:715              <= Recv header: date: Mon, 24 Apr 2023 17:22:43 GMT
            17:22:43.629151 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            17:22:43.629154 http.c:715              <= Recv header:
            17:22:43.629238 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
            fatal: expected flush after ref listing
            package golang.org/x/text: exit status 128
        script_test.go:154: FAIL: get_with_git_trace.txt:9: go get golang.org/x/text: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-04-25 01:14 linux-amd64-longtest go@22d94dfd cmd/go.TestDefaultGOPATHGet (log)
vcs-test.golang.org rerouted to http://127.0.0.1:35287
https://vcs-test.golang.org rerouted to https://127.0.0.1:42725
go test proxy running at GOPROXY=http://127.0.0.1:35989/mod
2023/04/25 01:41:28 http: TLS handshake error from 127.0.0.1:47504: read tcp 127.0.0.1:42725->127.0.0.1:47504: read: connection reset by peer
2023/04/25 01:41:28 http: TLS handshake error from 127.0.0.1:47526: EOF
2023/04/25 01:41:28 http: TLS handshake error from 127.0.0.1:47542: EOF
2023/04/25 01:41:30 http: TLS handshake error from 127.0.0.1:45144: read tcp 127.0.0.1:42725->127.0.0.1:45144: read: connection reset by peer
2023/04/25 01:41:30 http: TLS handshake error from 127.0.0.1:45200: read tcp 127.0.0.1:42725->127.0.0.1:45200: read: connection reset by peer
--- FAIL: TestDefaultGOPATHGet (64.66s)
    go_test.go:1392: running testgo [get -v github.com/golang/example/hello]
...
        01:44:29.079856 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
        01:44:29.079858 http.c:715              <= Recv header: date: Tue, 25 Apr 2023 01:44:29 GMT
        01:44:29.079862 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
        01:44:29.079865 http.c:715              <= Recv header:
        01:44:29.079914 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
        error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
        fatal: error reading section header 'shallow-info'
        package golang.org/x/example/stringutil: exit status 128

    go_test.go:1392: go [get -v github.com/golang/example/hello] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-05-02 12:56 linux-386-longtest go@c6306612 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:46335
https://vcs-test.golang.org rerouted to https://127.0.0.1:39319
go test proxy running at GOPROXY=http://127.0.0.1:39251/mod
2023/05/02 13:30:41 http: TLS handshake error from 127.0.0.1:54500: EOF
2023/05/02 13:30:57 http: TLS handshake error from 127.0.0.1:41222: EOF
2023/05/02 13:30:57 http: TLS handshake error from 127.0.0.1:41232: EOF
2023/05/02 13:30:57 http: TLS handshake error from 127.0.0.1:41250: EOF
2023/05/02 13:30:57 http: TLS handshake error from 127.0.0.1:41278: EOF
2023/05/02 13:30:57 http: TLS handshake error from 127.0.0.1:41290: EOF
2023/05/02 13:30:57 http: TLS handshake error from 127.0.0.1:41258: EOF
...
--- FAIL: TestScript (0.08s)
    --- FAIL: TestScript/mod_pseudo_cache (2.69s)
        script_test.go:134: 2023-05-02T13:30:39Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-792357994/tmpdir331098464/mod_pseudo_cache490670541
        script_test.go:154: 
            > [!net:golang.org] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GO111MODULE=on
...
            # pseudo-version of a commit, future resolution of that commit by hash should
            # choose the highest appropriate pseudo-version instead of the cached one. (2.689s)
            > go mod download -json golang.org/x/text@v0.0.0-20171215141712-a1b916ed6726
            [stdout]
            {
            	"Path": "golang.org/x/text",
            	"Version": "v0.0.0-20171215141712-a1b916ed6726",
            	"Error": "golang.org/x/text@v0.0.0-20171215141712-a1b916ed6726: unrecognized import path \"golang.org/x/text\": reading https://golang.org/x/text?go-get=1: 502 Bad Gateway"
            }
        script_test.go:154: FAIL: mod_pseudo_cache.txt:12: go mod download -json golang.org/x/text@v0.0.0-20171215141712-a1b916ed6726: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-05-04 16:36 linux-386-longtest go@8dea6354 cmd/go.TestDefaultGOPATHGet (log)
vcs-test.golang.org rerouted to http://127.0.0.1:41623
https://vcs-test.golang.org rerouted to https://127.0.0.1:33085
go test proxy running at GOPROXY=http://127.0.0.1:40163/mod
2023/05/04 17:08:20 http: TLS handshake error from 127.0.0.1:36784: EOF
2023/05/04 17:08:21 http: TLS handshake error from 127.0.0.1:36824: read tcp 127.0.0.1:33085->127.0.0.1:36824: read: connection reset by peer
2023/05/04 17:08:21 http: TLS handshake error from 127.0.0.1:36832: read tcp 127.0.0.1:33085->127.0.0.1:36832: read: connection reset by peer
2023/05/04 17:08:21 http: TLS handshake error from 127.0.0.1:36840: EOF
2023/05/04 17:08:21 http: TLS handshake error from 127.0.0.1:36856: EOF
2023/05/04 17:08:21 http: TLS handshake error from 127.0.0.1:36870: EOF
2023/05/04 17:08:21 http: TLS handshake error from 127.0.0.1:36906: EOF
...
--- FAIL: TestDefaultGOPATHGet (29.78s)
    go_test.go:1392: running testgo [get -v github.com/golang/example/hello]
    go_test.go:1392: standard error:
    go_test.go:1392: github.com/golang/example (download)
        created GOPATH=/workdir/tmp/cmd-go-test-2728520223/gotest1492243356/home/go; see 'go help gopath'
        get "golang.org/x/example/stringutil": found meta tag vcs.metaImport{Prefix:"golang.org/x/example", VCS:"git", RepoRoot:"https://go.googlesource.com/example"} at //golang.org/x/example/stringutil?go-get=1
        get "golang.org/x/example/stringutil": verifying non-authoritative meta tag
        golang.org/x/example (download)
        # cd /workdir/tmp/cmd-go-test-2728520223/gotest1492243356/home/go/src/golang.org/x; git clone -- https://go.googlesource.com/example /workdir/tmp/cmd-go-test-2728520223/gotest1492243356/home/go/src/golang.org/x/example
        Cloning into '/workdir/tmp/cmd-go-test-2728520223/gotest1492243356/home/go/src/golang.org/x/example'...
...
        17:11:09.049946 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
        17:11:09.049965 http.c:715              <= Recv header: date: Thu, 04 May 2023 17:11:09 GMT
        17:11:09.049984 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
        17:11:09.050000 http.c:715              <= Recv header:
        17:11:09.050098 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
        error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
        fatal: error reading section header 'shallow-info'
        package golang.org/x/example/stringutil: exit status 128

    go_test.go:1392: go [get -v github.com/golang/example/hello] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502`)
2023-05-05 14:59 linux-386-longtest go@bdc6ae57 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:41605
https://vcs-test.golang.org rerouted to https://127.0.0.1:39427
go test proxy running at GOPROXY=http://127.0.0.1:33677/mod
2023/05/05 15:31:55 http: TLS handshake error from 127.0.0.1:36508: EOF
2023/05/05 15:32:23 http: TLS handshake error from 127.0.0.1:46888: EOF
2023/05/05 15:32:23 http: TLS handshake error from 127.0.0.1:46898: EOF
2023/05/05 15:32:23 http: TLS handshake error from 127.0.0.1:46930: EOF
2023/05/05 15:32:23 http: TLS handshake error from 127.0.0.1:46942: EOF
2023/05/05 15:32:23 http: TLS handshake error from 127.0.0.1:46954: EOF
2023/05/05 15:32:23 http: TLS handshake error from 127.0.0.1:46994: EOF
...
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/get_404_meta (26.72s)
        script_test.go:134: 2023-05-05T15:32:39Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-3279990523/tmpdir2098026421/get_404_meta3815520707
        script_test.go:154: 
            # golang.org/issue/13037: 'go get' was not parsing <meta> tags in 404 served over HTTPS. (26.715s)
            > [!net:bazil.org] skip
            [condition not met]
            > [!git] skip
            [condition not met]
...
            15:33:06.025977 http.c:715              <= Recv header: x-xss-protection: 0
            15:33:06.025981 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            15:33:06.025986 http.c:715              <= Recv header: date: Fri, 05 May 2023 15:33:06 GMT
            15:33:06.025991 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            15:33:06.025994 http.c:715              <= Recv header:
            15:33:06.026047 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
            fatal: error reading section header 'shallow-info'
            package golang.org/x/sys/unix: exit status 128
        script_test.go:154: FAIL: get_404_meta.txt:8: go get -d bazil.org/fuse/fs/fstestutil: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502` ||
	`The requested URL returned error: 503` ||
	`system library:.*:Connection reset by peer`)
2023-05-30 19:39 linux-amd64-longtest go@5036ba77 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:32831
https://vcs-test.golang.org rerouted to https://127.0.0.1:45363
go test proxy running at GOPROXY=http://127.0.0.1:40949/mod
2023/05/30 19:59:14 http: TLS handshake error from 127.0.0.1:48852: EOF
2023/05/30 19:59:14 http: TLS handshake error from 127.0.0.1:48854: EOF
2023/05/30 19:59:14 http: TLS handshake error from 127.0.0.1:48868: EOF
2023/05/30 19:59:14 http: TLS handshake error from 127.0.0.1:48890: EOF
2023/05/30 19:59:14 http: TLS handshake error from 127.0.0.1:48930: EOF
--- FAIL: TestScript (0.04s)
    --- FAIL: TestScript/mod_get_hash (20.67s)
...
            	19:59:33.076250 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	19:59:33.076252 http.c:715              <= Recv header: date: Tue, 30 May 2023 19:59:33 GMT
            	19:59:33.076255 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	19:59:33.076257 http.c:715              <= Recv header:
            	19:59:33.076327 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
            	fatal: expected flush after ref listing
            [exit status 1]
            > stderr 'unknown revision'
        script_test.go:154: FAIL: mod_get_hash.txt:12: stderr 'unknown revision': no match for `(?m)unknown revision` in stderr

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502` ||
	`The requested URL returned error: 503` ||
	`system library:.*:Connection reset by peer`)
2023-06-06 16:57 linux-amd64-longtest-race go@a7b1cd45 cmd/go/internal/modfetch.TestCodeRepo (log)
--- FAIL: TestCodeRepo (0.00s)
    --- FAIL: TestCodeRepo/vcs-test.golang.org_go_mod_gitrepo1/master (9.14s)
        coderepo_test.go:595: repo.Stat("master"): vcs-test.golang.org/go/mod/gitrepo1@master: invalid version: git ls-remote -q origin in /workdir/tmp/gitrepo-test-4084485193/cache/vcs/689dca9085dbe70dfcb2d8c764579dfd5e3767581693970d2d8c30aff343e8f3: exit status 128:
            	fatal: unable to access 'https://vcs-test.golang.org/git/gitrepo1/': The requested URL returned error: 502
    --- FAIL: TestCodeRepo/vcs-test.golang.org_go_mod_gitrepo1/v2.3.4+incompatible (9.12s)
        coderepo_test.go:591: repoStat("v2.3.4+incompatible"): vcs-test.golang.org/go/mod/gitrepo1@v2.3.4+incompatible: invalid version: git ls-remote -q origin in /workdir/tmp/gitrepo-test-4084485193/cache/vcs/689dca9085dbe70dfcb2d8c764579dfd5e3767581693970d2d8c30aff343e8f3: exit status 128:
            	fatal: unable to access 'https://vcs-test.golang.org/git/gitrepo1/': The requested URL returned error: 502, wanted "resolves to version v2.0.1+incompatible (v2.3.4 is not a tag)"
2023-06-06 17:11 linux-amd64-longtest-race go@44e0fb13 cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:44029/mod
--- FAIL: TestScript (0.03s)
    --- FAIL: TestScript/get_insecure_redirect (9.35s)
        script_test.go:270: 
            # (2023-06-06T18:15:02Z)
            # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE).
            # golang.org/issue/34049: 'go get' would panic in case of an insecure redirect in GOPATH mode (9.349s)
            > [!net] skip
            > [!exec:git] skip
            > env GO111MODULE=off
...
    --- FAIL: TestScript/mod_download_svn (42.40s)
        script_test.go:270: 
            # (2023-06-06T18:14:44Z)
            # 'go mod download' will fall back to svn+ssh once svn fails over protocols like https.
            # If vcs-test.golang.org isn't in the user's known_hosts file, this will result
            # in an ssh prompt, which will stop 'go test' entirely
            #
            # Unfortunately, there isn't a way to globally disable host checking for ssh,
            # without modifying the real system's or user's configs. Changing $HOME won't
            # affect ssh either, as it ignores the environment variable entirely.
...
            # The test still seems to be useful as a test of direct-mode go get. (270.482s)
            > [short] skip
            > [!exec:git] skip
            > env GO111MODULE=off
            > env GOPATH=$WORK/tmp/d1
            > go get vcs-test.golang.org/git/modlegacy1-old.git/p1
            [stderr]
            package vcs-test.golang.org/git/modlegacy1-old.git/p1: cannot download, git://vcs-test.golang.org/git/modlegacy1-old uses insecure protocol
            [exit status 1]
            FAIL: testdata/script/get_legacy.txt:11: unexpected command failure

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 502` ||
	`The requested URL returned error: 503` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout`)
2023-05-20 21:53 plan9-arm go@b950cc8f cmd/go/internal/vcweb.TestHelp (log)
--- FAIL: TestHelp (30.07s)
    vcweb_test.go:27: Get "http://127.0.0.1:37149/help": dial tcp 127.0.0.1:37149: i/o timeout
2023/05/21 00:44:58 serving /
2023-05-31 21:27 plan9-arm go@01e703c2 cmd/go/internal/vcweb.TestHelp (log)
--- FAIL: TestHelp (30.04s)
    vcweb_test.go:27: Get "http://127.0.0.1:53406/help": dial tcp 127.0.0.1:53406: i/o timeout
2023/06/01 02:31:53 serving /
2023-06-08 16:47 linux-amd64-longtest go@cc99093d cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:38471
https://vcs-test.golang.org rerouted to https://127.0.0.1:34645
go test proxy running at GOPROXY=http://127.0.0.1:38201/mod
2023/06/08 17:14:11 http: TLS handshake error from 127.0.0.1:59160: read tcp 127.0.0.1:34645->127.0.0.1:59160: read: connection reset by peer
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_invalid_version (47.34s)
        script_test.go:134: 2023-06-08T17:14:01Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-3507492194/tmpdir1689896238/mod_invalid_version551686597
        script_test.go:158: 
            > [!net:golang.org] skip
...
            > go mod edit -require golang.org/x/text@v0.2.1-0.20171213102548-c4d099d611ac
            > cd outside
            > ! go list -m golang.org/x/text
            [stderr]
            go: unrecognized import path "golang.org/x/text": https fetch: Get "https://golang.org/x/text?go-get=1": dial tcp 142.250.136.141:443: i/o timeout
            go: example.com@v0.0.0 requires
            	golang.org/x/text@v0.2.1-0.20171213102548-c4d099d611ac: unrecognized import path "golang.org/x/text": https fetch: Get "https://golang.org/x/text?go-get=1": dial tcp 142.250.136.141:443: i/o timeout
            [exit status 1]
            > stderr 'go: example.com@v0.0.0 requires\n\tgolang.org/x/text@v0.2.1-0.20171213102548-c4d099d611ac: invalid pseudo-version: tag \(v0.2.0\) found on revision c4d099d611ac is already canonical, so should not be replaced with a pseudo-version derived from that tag'
        script_test.go:158: FAIL: testdata/script/mod_invalid_version.txt:166: stderr 'go: example.com@v0.0.0 requires\n\tgolang.org/x/text@v0.2.1-0.20171213102548-c4d099d611ac: invalid pseudo-version: tag \(v0.2.0\) found on revision c4d099d611ac is already canonical, so should not be replaced with a pseudo-version derived from that tag': no match for `(?m)go: example.com@v0.0.0 requires\n\tgolang.org/x/text@v0.2.1-0.20171213102548-c4d099d611ac: invalid pseudo-version: tag \(v0.2.0\) found on revision c4d099d611ac is already canonical, so should not be replaced with a pseudo-version derived from that tag` in stderr
2023-06-08 16:47 linux-amd64-longtest go@cc99093d cmd/go.TestDefaultGOPATHGet (log)
--- FAIL: TestDefaultGOPATHGet (31.20s)
    go_test.go:1458: running testgo [get -v github.com/golang/example/hello]
    go_test.go:1458: standard error:
    go_test.go:1458: github.com/golang/example (download)
        created GOPATH=/workdir/tmp/cmd-go-test-3507492194/gotest1071729583/home/go; see 'go help gopath'
        package golang.org/x/example/stringutil: unrecognized import path "golang.org/x/example/stringutil": https fetch: Get "https://golang.org/x/example/stringutil?go-get=1": dial tcp 142.250.136.141:443: i/o timeout

    go_test.go:1458: go [get -v github.com/golang/example/hello] failed unexpectedly in /workdir/go/src/cmd/go: exit status 1
2023-06-09 00:17 linux-amd64-longtest go@bd00528d cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:33977
https://vcs-test.golang.org rerouted to https://127.0.0.1:39941
go test proxy running at GOPROXY=http://127.0.0.1:33685/mod
2023/06/09 00:48:28 http: TLS handshake error from 127.0.0.1:44488: EOF
2023/06/09 00:48:28 http: TLS handshake error from 127.0.0.1:44472: EOF
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_invalid_version (63.76s)
        script_test.go:134: 2023-06-09T00:47:24Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-2197074842/tmpdir3122568122/mod_invalid_version1203386909
        script_test.go:158: 
...
    --- FAIL: TestScript/get_dash_t (30.93s)
        script_test.go:134: 2023-06-09T00:49:00Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-2197074842/tmpdir3122568122/get_dash_t3480053876
        script_test.go:158: 
            # Tests issue 8181 (30.929s)
            > [!net:github.com] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GO111MODULE=off
            > go get -v -t github.com/rsc/go-get-issue-8181/a github.com/rsc/go-get-issue-8181/b
            [stderr]
            github.com/rsc/go-get-issue-8181 (download)
            package golang.org/x/build/gerrit: unrecognized import path "golang.org/x/build/gerrit": https fetch: Get "https://golang.org/x/build/gerrit?go-get=1": dial tcp 142.250.152.141:443: i/o timeout
        script_test.go:158: FAIL: testdata/script/get_dash_t.txt:7: go get -v -t github.com/rsc/go-get-issue-8181/a github.com/rsc/go-get-issue-8181/b: exit status 1
2023-06-15 15:16 linux-arm64-longtest go@b7e74678 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:43655
https://vcs-test.golang.org rerouted to https://127.0.0.1:41779
go test proxy running at GOPROXY=http://127.0.0.1:38555/mod
2023/06/15 15:39:32 http: TLS handshake error from 127.0.0.1:56876: read tcp 127.0.0.1:41779->127.0.0.1:56876: read: connection reset by peer
2023/06/15 15:39:32 http: TLS handshake error from 127.0.0.1:56880: EOF
2023/06/15 15:39:32 http: TLS handshake error from 127.0.0.1:56886: EOF
2023/06/15 15:39:32 http: TLS handshake error from 127.0.0.1:56882: EOF
2023/06/15 15:39:32 http: TLS handshake error from 127.0.0.1:56920: EOF
2023/06/15 15:39:32 http: TLS handshake error from 127.0.0.1:56932: EOF
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/mod_invalid_version (37.55s)
        script_test.go:132: 2023-06-15T15:39:15Z
        script_test.go:134: $WORK=/tmp/workdir/tmp/cmd-go-test-2619552180/tmpdir711461935/mod_invalid_version452710507
        script_test.go:156: 
            > [!net:golang.org] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GO111MODULE=on
            > env GOPROXY=direct
...
            	go mod tidy
            > cmpenv go.mod go.mod.want
            > [!net:google.golang.org] skip
            [condition not met]
            > [!net:cloud.google.com] skip
            [condition not met]
            > go mod download github.com/fishy/gcsbucket@v0.0.0-20180217031846-618d60fe84e0
            [stderr]
            go: github.com/fishy/gcsbucket@v0.0.0-20180217031846-618d60fe84e0: verifying go.mod: github.com/fishy/gcsbucket@v0.0.0-20180217031846-618d60fe84e0/go.mod: Get "https://sum.golang.org/lookup/github.com/fishy/gcsbucket@v0.0.0-20180217031846-618d60fe84e0": dial tcp 64.233.183.141:443: i/o timeout
        script_test.go:156: FAIL: testdata/script/mod_convert.txt:20: go mod download github.com/fishy/gcsbucket@v0.0.0-20180217031846-618d60fe84e0: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- pkg ~ `^cmd/go` && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out`)
2023-04-24 15:54 linux-amd64-alpine go@33c06ee1 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:34841
https://vcs-test.golang.org rerouted to https://127.0.0.1:46431
go test proxy running at GOPROXY=http://127.0.0.1:41463/mod
git: 'http-backend' is not a git command. See 'git --help'.
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/get_insecure_redirect (0.25s)
        script_test.go:134: 2023-04-24T16:08:29Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-3812804130/tmpdir386399004/get_insecure_redirect3632283997
        script_test.go:154: 
            # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE).
...
            16:08:29.823471 http.c:611              <= Recv header, 0000000037 bytes (0x00000025)
            16:08:29.823485 http.c:623              <= Recv header: Date: Mon, 24 Apr 2023 16:08:29 GMT
            16:08:29.823499 http.c:611              <= Recv header, 0000000019 bytes (0x00000013)
            16:08:29.823507 http.c:623              <= Recv header: Content-Length: 0
            16:08:29.823519 http.c:611              <= Recv header, 0000000002 bytes (0x00000002)
            16:08:29.823525 http.c:623              <= Recv header:
            16:08:29.823547 http.c:664              == Info: Connection #0 to host 127.0.0.1 left intact
            fatal: unable to access 'http://127.0.0.1:34841/git/insecurerepo/': The requested URL returned error: 500
            package vcs-test.golang.org/insecure/go/insecure: exit status 128
        script_test.go:154: FAIL: get_insecure_redirect.txt:12: go get -d vcs-test.golang.org/insecure/go/insecure: exit status 1
2023-04-24 16:49 linux-amd64-alpine go@d33a5136 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:41305
https://vcs-test.golang.org rerouted to https://127.0.0.1:34805
go test proxy running at GOPROXY=http://127.0.0.1:34333/mod
git: 'http-backend' is not a git command. See 'git --help'.
--- FAIL: TestScript (0.04s)
    --- FAIL: TestScript/get_insecure_redirect (0.13s)
        script_test.go:134: 2023-04-24T16:57:29Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-4061221013/tmpdir3946685652/get_insecure_redirect3928778430
        script_test.go:154: 
            # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE).
...
            16:57:29.444734 http.c:611              <= Recv header, 0000000037 bytes (0x00000025)
            16:57:29.444740 http.c:623              <= Recv header: Date: Mon, 24 Apr 2023 16:57:29 GMT
            16:57:29.444748 http.c:611              <= Recv header, 0000000019 bytes (0x00000013)
            16:57:29.444754 http.c:623              <= Recv header: Content-Length: 0
            16:57:29.444763 http.c:611              <= Recv header, 0000000002 bytes (0x00000002)
            16:57:29.444770 http.c:623              <= Recv header:
            16:57:29.444788 http.c:664              == Info: Connection #0 to host 127.0.0.1 left intact
            fatal: unable to access 'http://127.0.0.1:41305/git/insecurerepo/': The requested URL returned error: 500
            package vcs-test.golang.org/insecure/go/insecure: exit status 128
        script_test.go:154: FAIL: get_insecure_redirect.txt:12: go get -d vcs-test.golang.org/insecure/go/insecure: exit status 1
2023-04-24 16:50 linux-amd64-alpine go@ddd822e5 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:43675
https://vcs-test.golang.org rerouted to https://127.0.0.1:33553
go test proxy running at GOPROXY=http://127.0.0.1:38129/mod
git: 'http-backend' is not a git command. See 'git --help'.
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/get_insecure_redirect (0.18s)
        script_test.go:134: 2023-04-24T16:59:16Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-4185332499/tmpdir1424555075/get_insecure_redirect968778698
        script_test.go:154: 
            # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE).
...
            16:59:16.951837 http.c:611              <= Recv header, 0000000037 bytes (0x00000025)
            16:59:16.951864 http.c:623              <= Recv header: Date: Mon, 24 Apr 2023 16:59:16 GMT
            16:59:16.951880 http.c:611              <= Recv header, 0000000019 bytes (0x00000013)
            16:59:16.951892 http.c:623              <= Recv header: Content-Length: 0
            16:59:16.951908 http.c:611              <= Recv header, 0000000002 bytes (0x00000002)
            16:59:16.951919 http.c:623              <= Recv header:
            16:59:16.951944 http.c:664              == Info: Connection #0 to host 127.0.0.1 left intact
            fatal: unable to access 'http://127.0.0.1:43675/git/insecurerepo/': The requested URL returned error: 500
            package vcs-test.golang.org/insecure/go/insecure: exit status 128
        script_test.go:154: FAIL: get_insecure_redirect.txt:12: go get -d vcs-test.golang.org/insecure/go/insecure: exit status 1
2023-06-07 14:58 linux-arm64-longtest go@b52950f6 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:43155
https://vcs-test.golang.org rerouted to https://127.0.0.1:35379
go test proxy running at GOPROXY=http://127.0.0.1:35619/mod
2023/06/07 15:20:55 http: TLS handshake error from 127.0.0.1:45972: EOF
2023/06/07 15:20:55 http: TLS handshake error from 127.0.0.1:45968: EOF
2023/06/07 15:20:55 http: TLS handshake error from 127.0.0.1:46042: EOF
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/get_with_git_trace (130.05s)
        script_test.go:134: 2023-06-07T15:21:04Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-1354750971/tmpdir2773573436/get_with_git_trace570553531
...
    --- FAIL: TestScript/get_non_pkg (131.63s)
        script_test.go:134: 2023-06-07T15:21:06Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-1354750971/tmpdir2773573436/get_non_pkg2573463841
        script_test.go:158: 
            > [!net:golang.org] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GOBIN=$WORK/tmp/gobin
            > env GO111MODULE=off
...
            15:21:06.841176 http.c:756              == Info: Immediate connect fail for 2607:f8b0:4001:c32::52: Cannot assign requested address
            15:23:18.214898 http.c:756              == Info: connect to 64.233.182.82 port 443 failed: Connection timed out
            15:23:18.214950 http.c:756              == Info: Failed to connect to go.googlesource.com port 443: Connection timed out
            � fm��
            15:23:18.214965 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'https://go.googlesource.com/tools/': Failed to connect to go.googlesource.com port 443: Connection timed out
            package golang.org/x/tools: exit status 128
            [exit status 1]
            > stderr 'golang.org/x/tools: no Go files'
        script_test.go:158: FAIL: testdata/script/get_non_pkg.txt:8: stderr 'golang.org/x/tools: no Go files': no match for `(?m)golang.org/x/tools: no Go files` in stderr
2023-06-07 18:23 linux-amd64-longtest-race go@7f26e9e5 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:34733
https://vcs-test.golang.org rerouted to https://127.0.0.1:35241
go test proxy running at GOPROXY=http://127.0.0.1:33875/mod
2023/06/07 19:23:13 http: TLS handshake error from 127.0.0.1:36156: EOF
2023/06/07 19:23:13 http: TLS handshake error from 127.0.0.1:36142: EOF
--- FAIL: TestScript (1.16s)
    --- FAIL: TestScript/mod_invalid_version (186.73s)
        script_test.go:134: 2023-06-07T19:23:53Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1615386285/tmpdir143359191/mod_invalid_version747819738
        script_test.go:158: 
...
    --- FAIL: TestScript/get_insecure_update (135.76s)
        script_test.go:134: 2023-06-07T19:27:44Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1615386285/tmpdir143359191/get_insecure_update2239131472
        script_test.go:158: 
            > [!net:github.com] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GO111MODULE=off
            # Clone the repo via HTTP manually. (0.666s)
...
            19:27:48.509536 http.c:756              == Info:   Trying 209.85.234.82:443...
            19:27:48.710357 http.c:756              == Info:   Trying 2607:f8b0:4001:c17::52:443...
            19:27:48.710426 http.c:756              == Info: Immediate connect fail for 2607:f8b0:4001:c17::52: Network is unreachable
            19:30:00.528736 http.c:756              == Info: connect to 209.85.234.82 port 443 failed: Connection timed out
            19:30:00.528837 http.c:756              == Info: Failed to connect to go.googlesource.com port 443: Connection timed out
            GES/libc.mo
            19:30:00.528860 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'https://go.googlesource.com/example/': Failed to connect to go.googlesource.com port 443: Connection timed out
            package golang.org/x/example/stringutil: exit status 128
        script_test.go:158: FAIL: testdata/script/get_insecure_update.txt:14: go get -d -u -f github.com/golang/example/hello: exit status 1
2023-06-08 16:47 linux-amd64-longtest-race go@cc99093d cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:37155
https://vcs-test.golang.org rerouted to https://127.0.0.1:34157
go test proxy running at GOPROXY=http://127.0.0.1:34615/mod
2023/06/08 17:48:24 http: TLS handshake error from 127.0.0.1:59676: EOF
2023/06/08 17:50:30 http: TLS handshake error from 127.0.0.1:53544: read tcp 127.0.0.1:34157->127.0.0.1:53544: read: connection reset by peer
2023/06/08 17:50:30 http: TLS handshake error from 127.0.0.1:53522: EOF
2023/06/08 17:50:42 http: TLS handshake error from 127.0.0.1:37768: EOF
--- FAIL: TestScript (1.17s)
    --- FAIL: TestScript/mod_pseudo_cache (129.98s)
        script_test.go:134: 2023-06-08T17:48:20Z
...
    --- FAIL: TestScript/get_insecure_custom_domain (129.34s)
        script_test.go:134: 2023-06-08T17:51:29Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1679683365/tmpdir3335611373/get_insecure_custom_domain1786550409
        script_test.go:158: 
            > [!net:insecure.go-get-issue-15410.appspot.com] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GO111MODULE=off
            > ! go get -d insecure.go-get-issue-15410.appspot.com/pkg/p
...
            17:51:29.468573 http.c:756              == Info:   Trying 108.177.120.153:80...
            17:51:29.669122 http.c:756              == Info:   Trying 2607:f8b0:4001:c18::99:80...
            17:51:29.669186 http.c:756              == Info: Immediate connect fail for 2607:f8b0:4001:c18::99: Network is unreachable
            17:53:38.585268 http.c:756              == Info: connect to 108.177.120.153 port 80 failed: Connection timed out
            17:53:38.585330 http.c:756              == Info: Failed to connect to insecure.go-get-issue-15410.appspot.com port 80: Connection timed out
            L��
            17:53:38.585348 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'http://insecure.go-get-issue-15410.appspot.com/': Failed to connect to insecure.go-get-issue-15410.appspot.com port 80: Connection timed out
            package insecure.go-get-issue-15410.appspot.com/pkg/p: exit status 128
        script_test.go:158: FAIL: testdata/script/get_insecure_custom_domain.txt:8: go get -d insecure.go-get-issue-15410.appspot.com/pkg/p: exit status 1
2023-06-08 17:09 linux-amd64-longtest go@bff4b0ed cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44683
https://vcs-test.golang.org rerouted to https://127.0.0.1:33719
go test proxy running at GOPROXY=http://127.0.0.1:37785/mod
2023/06/08 17:35:08 http: TLS handshake error from 127.0.0.1:60304: EOF
2023/06/08 17:35:08 http: TLS handshake error from 127.0.0.1:60366: EOF
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/mod_invalid_version (130.88s)
        script_test.go:134: 2023-06-08T17:34:46Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1144109719/tmpdir2990056829/mod_invalid_version465232989
        script_test.go:158: 
...
    --- FAIL: TestScript/get_dash_t (132.70s)
        script_test.go:134: 2023-06-08T17:36:14Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1144109719/tmpdir2990056829/get_dash_t1214013351
        script_test.go:158: 
            # Tests issue 8181 (132.702s)
            > [!net:github.com] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GO111MODULE=off
...
            17:36:16.018078 http.c:756              == Info:   Trying 172.253.119.82:443...
            17:36:16.218569 http.c:756              == Info:   Trying 2607:f8b0:4001:c1f::52:443...
            17:36:16.218623 http.c:756              == Info: Immediate connect fail for 2607:f8b0:4001:c1f::52: Network is unreachable
            17:38:27.396006 http.c:756              == Info: connect to 172.253.119.82 port 443 failed: Connection timed out
            17:38:27.396058 http.c:756              == Info: Failed to connect to go.googlesource.com port 443: Connection timed out
            GES/libc.mo
            17:38:27.396077 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'https://go.googlesource.com/build/': Failed to connect to go.googlesource.com port 443: Connection timed out
            package golang.org/x/build/gerrit: exit status 128
        script_test.go:158: FAIL: testdata/script/get_dash_t.txt:7: go get -v -t github.com/rsc/go-get-issue-8181/a github.com/rsc/go-get-issue-8181/b: exit status 1
2023-06-08 19:25 linux-amd64-longtest-race go@7b325ba2 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:38599
https://vcs-test.golang.org rerouted to https://127.0.0.1:38685
go test proxy running at GOPROXY=http://127.0.0.1:43103/mod
2023/06/08 20:25:20 http: TLS handshake error from 127.0.0.1:36972: read tcp 127.0.0.1:38685->127.0.0.1:36972: read: connection reset by peer
2023/06/08 20:27:11 http: TLS handshake error from 127.0.0.1:54636: EOF
2023/06/08 20:27:11 http: TLS handshake error from 127.0.0.1:54634: EOF
2023/06/08 20:27:11 http: TLS handshake error from 127.0.0.1:54612: EOF
2023/06/08 20:27:26 http: TLS handshake error from 127.0.0.1:60828: EOF
--- FAIL: TestScript (1.17s)
    --- FAIL: TestScript/mod_invalid_version (203.05s)
...
            	20:29:58.713223 http.c:756              == Info:   Trying 2607:f8b0:4001:c18::52:443...
            	20:29:58.713367 http.c:756              == Info: Immediate connect fail for 2607:f8b0:4001:c18::52: Network is unreachable
            	20:32:09.393352 http.c:756              == Info: connect to 108.177.120.82 port 443 failed: Connection timed out
            	20:32:09.393420 http.c:756              == Info: Failed to connect to go.googlesource.com port 443: Connection timed out
            	GES/libc.mo
            	20:32:09.393454 http.c:756              == Info: Closing connection 0
            	fatal: unable to access 'https://go.googlesource.com/text/': Failed to connect to go.googlesource.com port 443: Connection timed out
            [exit status 1]
            > stderr 'golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0c\+incompatible: invalid version: \+incompatible suffix not allowed: major version v0 is compatible'
        script_test.go:158: FAIL: testdata/script/mod_invalid_version.txt:179: stderr 'golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0c\+incompatible: invalid version: \+incompatible suffix not allowed: major version v0 is compatible': no match for `(?m)golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0c\+incompatible: invalid version: \+incompatible suffix not allowed: major version v0 is compatible` in stderr
2023-06-16 20:01 linux-amd64-longtest-race go@60876717 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:40393
https://vcs-test.golang.org rerouted to https://127.0.0.1:34343
go test proxy running at GOPROXY=http://127.0.0.1:41281/mod
2023/06/16 21:14:58 http: TLS handshake error from 127.0.0.1:44120: EOF
2023/06/16 21:14:58 http: TLS handshake error from 127.0.0.1:44102: read tcp 127.0.0.1:34343->127.0.0.1:44102: read: connection reset by peer
2023/06/16 21:15:18 http: TLS handshake error from 127.0.0.1:51128: EOF
2023/06/16 21:15:18 http: TLS handshake error from 127.0.0.1:51088: EOF
--- FAIL: TestScript (1.15s)
    --- FAIL: TestScript/mod_get_hash (159.64s)
        script_test.go:132: 2023-06-16T21:14:52Z
...
            	21:14:52.858740 http.c:756              == Info: Couldn't find host go.googlesource.com in the .netrc file; using defaults
            	21:14:52.860212 http.c:756              == Info:   Trying 142.251.161.82:443...
            	21:14:53.060582 http.c:756              == Info:   Trying 2607:f8b0:4001:c5c::52:443...
            	21:14:53.060630 http.c:756              == Info: Immediate connect fail for 2607:f8b0:4001:c5c::52: Network is unreachable
            	21:17:02.267677 http.c:756              == Info: connect to 142.251.161.82 port 443 failed: Connection timed out
            	21:17:02.267723 http.c:756              == Info: Failed to connect to go.googlesource.com port 443: Connection timed out
            	GES/libc.mo
            	21:17:02.267743 http.c:756              == Info: Closing connection 0
            	fatal: unable to access 'https://go.googlesource.com/time/': Failed to connect to go.googlesource.com port 443: Connection timed out
        script_test.go:156: FAIL: testdata/script/mod_get_hash.txt:8: go list -m golang.org/x/time@8be79e1e0910c292df4e79c241bb7e8f7e725959: exit status 1
2023-06-17 19:02 linux-386-longtest go@261e2676 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:34741
https://vcs-test.golang.org rerouted to https://127.0.0.1:33167
go test proxy running at GOPROXY=http://127.0.0.1:46017/mod
2023/06/17 19:36:28 http: TLS handshake error from 127.0.0.1:54364: EOF
2023/06/17 19:36:59 http: TLS handshake error from 127.0.0.1:40492: read tcp 127.0.0.1:33167->127.0.0.1:40492: read: connection reset by peer
2023/06/17 19:37:00 http: TLS handshake error from 127.0.0.1:40530: read tcp 127.0.0.1:33167->127.0.0.1:40530: read: connection reset by peer
2023/06/17 19:37:00 http: TLS handshake error from 127.0.0.1:40536: read tcp 127.0.0.1:33167->127.0.0.1:40536: read: connection reset by peer
2023/06/17 19:37:00 http: TLS handshake error from 127.0.0.1:40572: read tcp 127.0.0.1:33167->127.0.0.1:40572: read: connection reset by peer
2023/06/17 19:37:00 http: TLS handshake error from 127.0.0.1:40542: read tcp 127.0.0.1:33167->127.0.0.1:40542: read: connection reset by peer
2023/06/17 19:37:00 http: TLS handshake error from 127.0.0.1:40560: EOF
...
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/get_update (21.01s)
        script_test.go:132: 2023-06-17T19:35:26Z
        script_test.go:134: $WORK=/workdir/tmp/cmd-go-test-1939711100/tmpdir2905680494/get_update2244394697
        script_test.go:156: 
            # Tests Issue #9224
            # The recursive updating was trying to walk to
            # former dependencies, not current ones. (0.000s)
            # Rewind (3.445s)
            # Run get (17.560s)
...
            19:35:47.961919 http.c:715              <= Recv header: x-frame-options: DENY
            19:35:47.961923 http.c:703              <= Recv header, 0000000057 bytes (0x00000039)
            19:35:47.961926 http.c:715              <= Recv header: x-github-request-id: 3818:A8D9:8D00B83:8F11FC9:648E0B03
            19:35:47.961930 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            19:35:47.961933 http.c:715              <= Recv header:
            19:35:47.961967 http.c:756              == Info: Connection #0 to host github.com left intact
            remote: Internal Server Error
            fatal: unable to access 'https://github.com/rsc/go-get-issue-9224-lib/': The requested URL returned error: 500
            package github.com/rsc/go-get-issue-9224-lib/liba: exit status 1
        script_test.go:156: FAIL: testdata/script/get_update.txt:16: go get -u github.com/rsc/go-get-issue-9224-cmd: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- (pkg ~ `^cmd/go` || pkg ~ `^golang.org/x/mod`) && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out`)
2023-05-17 15:46 linux-amd64-longtest-race mod@e7bea8f1 go@5ffdc1f1 x/mod/zip.TestVCS (log)
--- FAIL: TestVCS (0.00s)
    --- FAIL: TestVCS/golang.org_x_talks@v0.0.0-20191010201600-067e0d331fee (83.65s)
        zip_test.go:1327: /usr/bin/git init --bare
        zip_test.go:1344: /usr/bin/git remote add origin -- https://go.googlesource.com/talks
        zip_test.go:1353: exit status 128: /usr/bin/git fetch -f --depth=1 origin 067e0d331feee4f8d0fa17d47444db533bd904e7:refs/dummy
            15:57:10.432027 http.c:756              == Info: Couldn't find host go.googlesource.com in the .netrc file; using defaults
            15:57:10.436145 http.c:756              == Info:   Trying 209.85.147.82:443...
            15:57:10.437204 http.c:756              == Info: Connected to go.googlesource.com (209.85.147.82) port 443 (#0)
            15:57:10.494546 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            15:57:10.494641 http.c:756              == Info: ALPN, offering h2
...
            15:58:34.047371 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            15:58:34.047373 http.c:715              <= Recv header: x-xss-protection: 0
            15:58:34.047376 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            15:58:34.047378 http.c:715              <= Recv header: date: Tue, 23 May 2023 15:58:34 GMT
            15:58:34.047382 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            15:58:34.047385 http.c:715              <= Recv header:
            15:58:34.047432 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502
            fatal: error reading section header 'shallow-info'
        zip_test.go:1222: failed to download zip from repository (repeated failure): exit status 128
2023-06-15 19:12 linux-arm64-longtest mod@bfed713d go@dbf9bf2c x/mod/sumdb/tlog.TestCertificateTransparency (log)
--- FAIL: TestCertificateTransparency (30.04s)
    ct_test.go:80: Get "http://ct.googleapis.com/logs/argon2020/ct/v1/get-sth": dial tcp 64.233.182.95:80: i/o timeout

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- (pkg ~ `^cmd/go` || pkg ~ `^golang.org/x/mod`) && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out`)
2023-06-20 00:36 linux-amd64-longtest-race go@d51e322a cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:37345
https://vcs-test.golang.org rerouted to https://127.0.0.1:45337
go test proxy running at GOPROXY=http://127.0.0.1:39807/mod
2023/06/20 01:35:16 http: TLS handshake error from 127.0.0.1:41372: read tcp 127.0.0.1:45337->127.0.0.1:41372: read: connection reset by peer
2023/06/20 01:35:16 http: TLS handshake error from 127.0.0.1:41356: EOF
--- FAIL: TestScript (0.13s)
    --- FAIL: TestScript/mod_invalid_version (166.06s)
        script_test.go:134: 2023-06-20T01:37:01Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-4016687900/tmpdir2232188829/mod_invalid_version1345041901
        script_test.go:154: 
...
            	01:37:38.140532 http.c:756              == Info: Couldn't find host go.googlesource.com in the .netrc file; using defaults
            	01:37:38.142165 http.c:756              == Info:   Trying 173.194.196.82:443...
            	01:37:38.342624 http.c:756              == Info:   Trying 2607:f8b0:4001:c1a::52:443...
            	01:37:38.342680 http.c:756              == Info: Immediate connect fail for 2607:f8b0:4001:c1a::52: Network is unreachable
            	01:39:47.003151 http.c:756              == Info: connect to 173.194.196.82 port 443 failed: Connection timed out
            	01:39:47.003216 http.c:756              == Info: Failed to connect to go.googlesource.com port 443: Connection timed out
            	GES/libc.mo
            	01:39:47.003235 http.c:756              == Info: Closing connection 0
            	fatal: unable to access 'https://go.googlesource.com/text/': Failed to connect to go.googlesource.com port 443: Connection timed out
        script_test.go:154: FAIL: mod_invalid_version.txt:92: go list -m golang.org/x/text: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- (pkg ~ `^cmd/go` || pkg ~ `^golang.org/x/mod`) && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out`)
2023-06-22 15:27 linux-386-longtest go@6b45fb7b cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:36409
https://vcs-test.golang.org rerouted to https://127.0.0.1:36743
go test proxy running at GOPROXY=http://127.0.0.1:39679/mod
2023/06/22 16:04:28 http: TLS handshake error from 127.0.0.1:57004: EOF
2023/06/22 16:04:53 http: TLS handshake error from 127.0.0.1:41102: EOF
2023/06/22 16:04:53 http: TLS handshake error from 127.0.0.1:41116: EOF
2023/06/22 16:04:53 http: TLS handshake error from 127.0.0.1:41122: EOF
2023/06/22 16:04:53 http: TLS handshake error from 127.0.0.1:41142: read tcp 127.0.0.1:36743->127.0.0.1:41142: read: connection reset by peer
2023/06/22 16:04:53 http: TLS handshake error from 127.0.0.1:41150: EOF
2023/06/22 16:04:53 http: TLS handshake error from 127.0.0.1:41166: EOF
...
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/mod_sumdb_golang (52.85s)
        script_test.go:134: 2023-06-22T16:04:21Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-749880278/tmpdir2730352991/mod_sumdb_golang2567663063
        script_test.go:154: 
            # Test default GOPROXY and GOSUMDB (0.286s)
            # Download direct from github. (18.732s)
            # Download from proxy.golang.org with go.sum entry already.
            # Use 'go list' instead of 'go get' since the latter may download extra go.mod
            # files not listed in go.sum. (1.924s)
...
            	16:05:36.126237 http.c:756              == Info: Couldn't find host insecure.go-get-issue-15410.appspot.com in the .netrc file; using defaults
            	16:05:36.140098 http.c:756              == Info:   Trying 74.125.124.153:80...
            	16:05:36.340784 http.c:756              == Info:   Trying 2607:f8b0:4001:c14::99:80...
            	16:05:36.340843 http.c:756              == Info: Immediate connect fail for 2607:f8b0:4001:c14::99: Network is unreachable
            	16:07:47.195176 http.c:756              == Info: connect to 74.125.124.153 port 80 failed: Connection timed out
            	16:07:47.195234 http.c:756              == Info: Failed to connect to insecure.go-get-issue-15410.appspot.com port 80: Connection timed out
            	���
            	16:07:47.195253 http.c:756              == Info: Closing connection 0
            	fatal: unable to access 'http://insecure.go-get-issue-15410.appspot.com/': Failed to connect to insecure.go-get-issue-15410.appspot.com port 80: Connection timed out
        script_test.go:154: FAIL: get_insecure.txt:37: go get -d insecure.go-get-issue-15410.appspot.com/pkg/p: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- (pkg ~ `^cmd/go` || pkg ~ `^golang.org/x/mod`) && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out`)
2023-06-29 17:00 linux-amd64-longtest go@499458f7 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:36405
https://vcs-test.golang.org rerouted to https://127.0.0.1:42161
go test proxy running at GOPROXY=http://127.0.0.1:44213/mod
2023/06/29 17:28:39 http: TLS handshake error from 127.0.0.1:57746: read tcp 127.0.0.1:42161->127.0.0.1:57746: read: connection reset by peer
2023/06/29 17:28:43 http: TLS handshake error from 127.0.0.1:57810: EOF
2023/06/29 17:28:43 http: TLS handshake error from 127.0.0.1:57892: EOF
--- FAIL: TestScript (0.05s)
    --- FAIL: TestScript/get_404_meta (32.78s)
        script_test.go:132: 2023-06-29T17:26:30Z
        script_test.go:134: $WORK=/workdir/tmp/cmd-go-test-268447696/tmpdir2101782927/get_404_meta3306930751
...
    --- FAIL: TestScript/mod_sumdb_file_path (31.25s)
        script_test.go:132: 2023-06-29T17:27:57Z
        script_test.go:134: $WORK=/workdir/tmp/cmd-go-test-268447696/tmpdir2101782927/mod_sumdb_file_path1752451092
        script_test.go:156: 
            > [!net:proxy.golang.org] skip
            [condition not met]
            > env GO111MODULE=on
            > env GOSUMDB=
            > env GOPATH=$WORK/gopath1
            # With a file-based proxy with an empty checksum directory,
...
            # checksum verification should fall through to the next proxy,
            # and downloading should succeed. (30.056s)
            > [GOOS:windows] env GOPROXY=file:///$WORK/emptyproxy,https://proxy.golang.org
            [condition not met]
            > [!GOOS:windows] env GOPROXY=file://$WORK/emptyproxy,https://proxy.golang.org
            > go get golang.org/x/text@v0.3.2
            [stderr]
            go: downloading golang.org/x/text v0.3.2
            go: golang.org/x/text@v0.3.2: Get "https://proxy.golang.org/golang.org/x/text/@v/v0.3.2.zip": dial tcp 74.125.132.141:443: i/o timeout
        script_test.go:156: FAIL: testdata/script/mod_sumdb_file_path.txt:23: go get golang.org/x/text@v0.3.2: exit status 1
2023-06-29 17:00 linux-amd64-longtest-race go@499458f7 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44903
https://vcs-test.golang.org rerouted to https://127.0.0.1:34487
go test proxy running at GOPROXY=http://127.0.0.1:43275/mod
2023/06/29 18:02:42 http: TLS handshake error from 127.0.0.1:35528: read tcp 127.0.0.1:34487->127.0.0.1:35528: read: connection reset by peer
2023/06/29 18:06:15 http: TLS handshake error from 127.0.0.1:37904: EOF
2023/06/29 18:06:15 http: TLS handshake error from 127.0.0.1:37930: EOF
--- FAIL: TestScript (1.15s)
    --- FAIL: TestScript/get_update_unknown_protocol (129.11s)
        script_test.go:132: 2023-06-29T17:58:11Z
        script_test.go:134: $WORK=/workdir/tmp/cmd-go-test-628446443/tmpdir3843541641/get_update_unknown_protocol2087227053
...
    --- FAIL: TestScript/get_insecure_env (30.36s)
        script_test.go:132: 2023-06-29T17:59:54Z
        script_test.go:134: $WORK=/workdir/tmp/cmd-go-test-628446443/tmpdir3843541641/get_insecure_env646493216
        script_test.go:156: 
            > [!net:insecure.go-get-issue-15410.appspot.com] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            # GOPATH: Set up (0.000s)
            # GOPATH: Try go get -d of HTTP-only repo (should fail). (0.133s)
...
            	18:08:38.608801 http.c:756              == Info: connect to 140.82.112.4 port 443 failed: Connection timed out
            	18:08:38.608826 http.c:756              == Info:   Trying 140.82.112.3:443...
            	18:08:43.867246 http.c:756              == Info: After 5254ms connect time, move on!
            	18:08:43.867285 http.c:756              == Info: connect to 140.82.112.3 port 443 failed: Connection timed out
            	18:08:43.867318 http.c:756              == Info: Failed to connect to github.com port 443: Connection timed out
            	18:08:43.867331 http.c:756              == Info: Closing connection 0
            	fatal: unable to access 'https://github.com/golang/nonexist/': Failed to connect to github.com port 443: Connection timed out
            [exit status 1]
            > stderr 'Confirm the import path was entered correctly.'
        script_test.go:156: FAIL: testdata/script/mod_download_private_vcs.txt:9: stderr 'Confirm the import path was entered correctly.': no match for `(?m)Confirm the import path was entered correctly.` in stderr

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- (pkg ~ `^cmd/go` || pkg ~ `^golang.org/x/mod`) && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out`)
2023-05-02 19:41 linux-amd64-longtest-race go@a32232cb cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:33447
https://vcs-test.golang.org rerouted to https://127.0.0.1:37803
go test proxy running at GOPROXY=http://127.0.0.1:33673/mod
2023/05/02 20:41:09 http: TLS handshake error from 127.0.0.1:49912: EOF
2023/05/02 20:41:18 http: TLS handshake error from 127.0.0.1:42624: read tcp 127.0.0.1:37803->127.0.0.1:42624: read: connection reset by peer
--- FAIL: TestScript (1.14s)
    --- FAIL: TestScript/mod_invalid_version (37.84s)
        script_test.go:134: 2023-05-02T20:39:30Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-2569038435/tmpdir2913778086/mod_invalid_version2017634006
        script_test.go:154: 
...
            	20:40:08.045772 http.c:715              <= Recv header: x-frame-options: SAMEORIGIN
            	20:40:08.045774 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            	20:40:08.045778 http.c:715              <= Recv header: x-xss-protection: 0
            	20:40:08.045781 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	20:40:08.045783 http.c:715              <= Recv header: date: Tue, 02 May 2023 20:40:08 GMT
            	20:40:08.045786 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	20:40:08.045788 http.c:715              <= Recv header:
            	20:40:08.045823 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	fatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 502
        script_test.go:154: FAIL: mod_invalid_version.txt:24: go list -m golang.org/x/text: exit status 1
2023-05-10 15:11 linux-amd64-longtest-race go@93d9035c cmd/go/internal/modload.TestQueryImport (log)
vcs-test.golang.org rerouted to http://127.0.0.1:34709
https://vcs-test.golang.org rerouted to https://127.0.0.1:44109
go: finding module for package golang.org/x/net/context
go: finding module for package golang.org/x/net
go: finding module for package golang.org/x/text
go: finding module for package github.com/rsc/quote/buggy
go: finding module for package github.com/rsc/quote
go: finding module for package golang.org/x/foo/bar
--- FAIL: TestQueryImport (40.93s)
    --- FAIL: TestQueryImport/golang.org_x_text (30.83s)
        import_test.go:81: queryImport(_, "golang.org/x/text"): module golang.org/x/text: git ls-remote -q origin in /workdir/tmp/modload-test-4021681135/pkg/mod/cache/vcs/38515699458adac9c8b61a0b44f9ad7a5f6edd7bcc2d7fae95930ec78f71e1b4: exit status 128:
            	fatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 502
2023-05-10 15:11 linux-arm64-longtest go@93d9035c cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:34951
https://vcs-test.golang.org rerouted to https://127.0.0.1:43969
go test proxy running at GOPROXY=http://127.0.0.1:35661/mod
2023/05/10 15:33:12 http: TLS handshake error from 127.0.0.1:43848: read tcp 127.0.0.1:43969->127.0.0.1:43848: read: connection reset by peer
2023/05/10 15:33:43 http: TLS handshake error from 127.0.0.1:34580: EOF
2023/05/10 15:33:43 http: TLS handshake error from 127.0.0.1:34620: EOF
2023/05/10 15:33:43 http: TLS handshake error from 127.0.0.1:34640: EOF
2023/05/10 15:33:43 http: TLS handshake error from 127.0.0.1:34634: EOF
2023/05/10 15:33:43 http: TLS handshake error from 127.0.0.1:34676: read tcp 127.0.0.1:43969->127.0.0.1:34676: read: connection reset by peer
2023/05/10 15:33:43 http: TLS handshake error from 127.0.0.1:34680: read tcp 127.0.0.1:43969->127.0.0.1:34680: read: connection reset by peer
...
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_invalid_version (160.57s)
        script_test.go:134: 2023-05-10T15:33:14Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-1569824191/tmpdir45329178/mod_invalid_version3354269359
        script_test.go:154: 
            > [!net:golang.org] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GO111MODULE=on
...
            	15:35:54.946943 http.c:715              <= Recv header: x-xss-protection: 0
            	15:35:54.946946 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	15:35:54.946948 http.c:715              <= Recv header: date: Wed, 10 May 2023 15:35:54 GMT
            	15:35:54.946950 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	15:35:54.946952 http.c:715              <= Recv header:
            	15:35:54.946981 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	fatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 502
            [exit status 1]
            > stderr 'go: example.com@v0.0.0 requires\n\tgolang.org/x/text@v1.999.999-0.20170915032832-14c0d48ead0c: invalid pseudo-version: preceding tag \(v1.999.998\) not found'
        script_test.go:154: FAIL: mod_invalid_version.txt:100: stderr 'go: example.com@v0.0.0 requires\n\tgolang.org/x/text@v1.999.999-0.20170915032832-14c0d48ead0c: invalid pseudo-version: preceding tag \(v1.999.998\) not found': no match for `(?m)go: example.com@v0.0.0 requires\n\tgolang.org/x/text@v1.999.999-0.20170915032832-14c0d48ead0c: invalid pseudo-version: preceding tag \(v1.999.998\) not found` in stderr
2023-05-10 20:35 linux-386-longtest go@200a01ff cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44495
https://vcs-test.golang.org rerouted to https://127.0.0.1:36651
go test proxy running at GOPROXY=http://127.0.0.1:41617/mod
2023/05/10 21:09:53 http: TLS handshake error from 127.0.0.1:35190: read tcp 127.0.0.1:36651->127.0.0.1:35190: read: connection reset by peer
2023/05/10 21:09:53 http: TLS handshake error from 127.0.0.1:35192: EOF
2023/05/10 21:09:53 http: TLS handshake error from 127.0.0.1:35200: read tcp 127.0.0.1:36651->127.0.0.1:35200: read: connection reset by peer
2023/05/10 21:09:53 http: TLS handshake error from 127.0.0.1:35242: EOF
2023/05/10 21:09:53 http: TLS handshake error from 127.0.0.1:35214: EOF
2023/05/10 21:09:53 http: TLS handshake error from 127.0.0.1:35230: EOF
2023/05/10 21:09:54 http: TLS handshake error from 127.0.0.1:35286: EOF
...
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_get_hash (72.24s)
        script_test.go:134: 2023-05-10T21:09:51Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1700495123/tmpdir3744854209/mod_get_hash3108374947
        script_test.go:154: 
            > env GO111MODULE=on
            > env GOPROXY=direct
            > env GOSUMDB=off
            > [!net:golang.org] skip
            [condition not met]
...
            	21:11:03.341679 http.c:715              <= Recv header: x-frame-options: SAMEORIGIN
            	21:11:03.341682 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            	21:11:03.341686 http.c:715              <= Recv header: x-xss-protection: 0
            	21:11:03.341691 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	21:11:03.341695 http.c:715              <= Recv header: date: Wed, 10 May 2023 21:11:03 GMT
            	21:11:03.341699 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	21:11:03.341703 http.c:715              <= Recv header:
            	21:11:03.341754 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	fatal: unable to access 'https://go.googlesource.com/time/': The requested URL returned error: 502
        script_test.go:154: FAIL: mod_get_hash.txt:8: go list -m golang.org/x/time@8be79e1e0910c292df4e79c241bb7e8f7e725959: exit status 1
2023-05-10 20:35 linux-amd64-longtest-race go@200a01ff cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:40373
https://vcs-test.golang.org rerouted to https://127.0.0.1:37105
go test proxy running at GOPROXY=http://127.0.0.1:39709/mod
2023/05/10 21:35:46 http: TLS handshake error from 127.0.0.1:58174: EOF
2023/05/10 21:35:46 http: TLS handshake error from 127.0.0.1:58202: EOF
2023/05/10 21:35:46 http: TLS handshake error from 127.0.0.1:58188: EOF
2023/05/10 21:39:02 http: TLS handshake error from 127.0.0.1:44026: EOF
--- FAIL: TestScript (1.15s)
    --- FAIL: TestScript/mod_invalid_version (200.75s)
        script_test.go:134: 2023-05-10T21:38:51Z
...
            	21:42:12.307369 http.c:715              <= Recv header: x-xss-protection: 0
            	21:42:12.307373 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	21:42:12.307375 http.c:715              <= Recv header: date: Wed, 10 May 2023 21:42:12 GMT
            	21:42:12.307378 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	21:42:12.307380 http.c:715              <= Recv header:
            	21:42:12.307424 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	fatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 502
            [exit status 1]
            > stderr 'golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0c\+incompatible: invalid version: \+incompatible suffix not allowed: major version v0 is compatible'
        script_test.go:154: FAIL: mod_invalid_version.txt:179: stderr 'golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0c\+incompatible: invalid version: \+incompatible suffix not allowed: major version v0 is compatible': no match for `(?m)golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0c\+incompatible: invalid version: \+incompatible suffix not allowed: major version v0 is compatible` in stderr
2023-05-12 13:51 linux-arm64-longtest go@c3db9af3 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:36277
https://vcs-test.golang.org rerouted to https://127.0.0.1:41775
go test proxy running at GOPROXY=http://127.0.0.1:45241/mod
2023/05/12 14:11:38 http: TLS handshake error from 127.0.0.1:38678: read tcp 127.0.0.1:41775->127.0.0.1:38678: read: connection reset by peer
2023/05/12 14:11:38 http: TLS handshake error from 127.0.0.1:38746: EOF
2023/05/12 14:11:38 http: TLS handshake error from 127.0.0.1:38786: read tcp 127.0.0.1:41775->127.0.0.1:38786: read: connection reset by peer
2023/05/12 14:11:40 http: TLS handshake error from 127.0.0.1:38908: EOF
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/get_test_only (70.13s)
        script_test.go:134: 2023-05-12T14:12:36Z
...
    --- FAIL: TestScript/get_dash_t (41.19s)
        script_test.go:134: 2023-05-12T14:13:05Z
        script_test.go:136: $WORK=/tmp/workdir/tmp/cmd-go-test-2697138359/tmpdir1605217320/get_dash_t2924223589
        script_test.go:154: 
            # Tests issue 8181 (41.189s)
            > [!net:github.com] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GO111MODULE=off
...
            # hash should use the highest such pseudo-version appropriate to the commit. (140.158s)
            > env GOPROXY=direct
            > go mod download -json golang.org/x/text@a1b916ed6726
            [stdout]
            {
            	"Path": "golang.org/x/text",
            	"Version": "a1b916ed6726",
            	"Error": "golang.org/x/text@a1b916ed6726: git ls-remote -q origin in /tmp/workdir/tmp/cmd-go-test-2697138359/tmpdir1605217320/mod_pseudo_cache3453137005/gopath/pkg/mod/cache/vcs/38515699458adac9c8b61a0b44f9ad7a5f6edd7bcc2d7fae95930ec78f71e1b4: exit status 128:\n\t14:11:33.552306 http.c:756              == Info: Couldn't find host go.googlesource.com in the .netrc file; using defaults\n\t14:11:33.556333 http.c:756              == Info:   Trying 142.250.136.82:443...\n\t14:11:33.557121 http.c:756              == Info: Connected to go.googlesource.com (142.250.136.82) port 443 (#0)\n\t14:11:33.589673 http.c:756              == Info: found 387 certificates in /etc/ssl/certs\n\t14:11:33.589804 http.c:756              == Info: ALPN, offering h2\n\t14:11:33.589827 http.c:756              == Info: ALPN, offering http/1.1\n\t14:11:33.593303 http.c:756              == Info: SSL connection using TLS1.3 / ECDHE_RSA_AES_256_GCM_SHA384\n\t14:11:33.595005 http.c:756              == Info: \t server certificate verification OK\n\t14:11:33.595020 http.c:756              == Info: \t server certificate status verification SKIPPED\n\t14:11:33.595135 http.c:756              == Info: \t common name: *.googlecode.com (matched)\n\t14:11:33.595142 http.c:756              == Info: \t server certificate expiration date OK\n\t14:11:33.595146 http.c:756              == Info: \t server certificate activation date OK\n\t14:11:33.595153 http.c:756              == Info: \t certificate public key: EC/ECDSA\n\t14:11:33.595156 http.c:756              == Info: \t certificate version: #3\n\t14:11:33.595165 http.c:756              == Info: \t subject: CN=*.googlecode.com\n\t14:11:33.595172 http.c:756              == Info: \t start date: Mon, 17 Apr 2023 08:25:00 GMT\n\t14:11:33.595177 http.c:756              == Info: \t expire date: Mon, 10 Jul 2023 08:24:59 GMT\n\t14:11:33.595192 http.c:756              == Info: \t issuer: C=US,O=Google Trust Services LLC,CN=GTS CA 1C3\n\t14:11:33.595204 http.c:756              == Info: ALPN, server accepted to use h2\n\t14:11:33.595242 http.c:756              == Info: Using HTTP2, server supports multi-use\n\t14:11:33.595247 http.c:756              == Info: Connection state changed (HTTP/2 confirmed)\n\t14:11:33.595251 http.c:756              == Info: Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0\n\t14:11:33.595342 http.c:756              == Info: Using Stream ID: 1 (easy handle 0xacb52f777520)\n\t14:11:33.595411 http.c:703              =\u003e Send header, 0000000197 bytes (0x000000c5)\n\t14:11:33.595436 http.c:715              =\u003e Send header: GET /text/info/refs?service=git-upload-pack HTTP/2\n\t14:11:33.595457 http.c:715              =\u003e Send header: Host: go.googlesource.com\n\t14:11:33.595475 http.c:715              =\u003e Send header: user-agent: git/2.30.2\n\t14:11:33.595543 http.c:715              =\u003e Send header: accept: */*\n\t14:11:33.595550 http.c:715              =\u003e Send header: accept-encoding: deflate, gzip, br\n\t14:11:33.595553 http.c:715              =\u003e Send header: pragma: no-cache\n\t14:11:33.595554 http.c:715              =\u003e Send header: git-protocol: version=2\n\t14:11:33.595556 http.c:715              =\u003e Send header:\n\t14:11:33.595577 http.c:756              == Info: Connection state changed (MAX_CONCURRENT_STREAMS == 100)!\n\t14:13:53.361261 http.c:703              \u003c= Recv header, 0000000013 bytes (0x0000000d)\n\t14:13:53.361276 http.c:715              \u003c= Recv header: HTTP/2 500\n\t14:13:53.361279 http.c:703              \u003c= Recv header, 0000000022 bytes (0x00000016)\n\t14:13:53.361282 http.c:715              \u003c= Recv header: content-length: 1461\n\t14:13:53.361284 http.c:703              \u003c= Recv header, 0000000040 bytes (0x00000028)\n\t14:13:53.361286 http.c:715              \u003c= Recv header: content-type: text/html; charset=utf-8\n\t14:13:53.361287 http.c:703              \u003c= Recv header, 0000000033 bytes (0x00000021)\n\t14:13:53.361289 http.c:715              \u003c= Recv header: x-content-type-options: nosniff\n\t14:13:53.361290 http.c:703              \u003c= Recv header, 0000000029 bytes (0x0000001d)\n\t14:13:53.361292 http.c:715              \u003c= Recv header: x-frame-options: SAMEORIGIN\n\t14:13:53.361293 http.c:703              \u003c= Recv header, 0000000021 bytes (0x00000015)\n\t14:13:53.361294 http.c:715              \u003c= Recv header: x-xss-protection: 0\n\t14:13:53.361296 http.c:703              \u003c= Recv header, 0000000037 bytes (0x00000025)\n\t14:13:53.361297 http.c:715              \u003c= Recv header: date: Fri, 12 May 2023 14:13:53 GMT\n\t14:13:53.361299 http.c:703              \u003c= Recv header, 0000000002 bytes (0x00000002)\n\t14:13:53.361300 http.c:715              \u003c= Recv header:\n\t14:13:53.361326 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact\n\tfatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 500"
            }
        script_test.go:154: FAIL: mod_pseudo_cache.txt:23: go mod download -json golang.org/x/text@a1b916ed6726: exit status 1
2023-05-17 13:57 linux-amd64-longtest go@54031132 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:36963
https://vcs-test.golang.org rerouted to https://127.0.0.1:42065
go test proxy running at GOPROXY=http://127.0.0.1:37249/mod
2023/05/17 14:26:14 http: TLS handshake error from 127.0.0.1:37616: EOF
2023/05/17 14:26:14 http: TLS handshake error from 127.0.0.1:37634: EOF
2023/05/17 14:26:14 http: TLS handshake error from 127.0.0.1:37650: EOF
2023/05/17 14:26:15 http: TLS handshake error from 127.0.0.1:37654: read tcp 127.0.0.1:42065->127.0.0.1:37654: read: connection reset by peer
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/mod_sumdb_golang (27.72s)
        script_test.go:134: 2023-05-17T14:24:46Z
...
            	14:25:14.066359 http.c:715              <= Recv header: x-frame-options: SAMEORIGIN
            	14:25:14.066365 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            	14:25:14.066370 http.c:715              <= Recv header: x-xss-protection: 0
            	14:25:14.066376 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	14:25:14.066382 http.c:715              <= Recv header: date: Wed, 17 May 2023 14:25:14 GMT
            	14:25:14.066391 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	14:25:14.066397 http.c:715              <= Recv header:
            	14:25:14.066469 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	fatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 502
        script_test.go:154: FAIL: mod_sumdb_golang.txt:20: go get rsc.io/quote@v1.5.2: exit status 1
2023-05-19 17:41 linux-amd64-longtest go@dc4993e7 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:39905
https://vcs-test.golang.org rerouted to https://127.0.0.1:34233
go test proxy running at GOPROXY=http://127.0.0.1:43985/mod
2023/05/19 18:14:01 http: TLS handshake error from 127.0.0.1:57166: read tcp 127.0.0.1:34233->127.0.0.1:57166: read: connection reset by peer
2023/05/19 18:14:01 http: TLS handshake error from 127.0.0.1:57176: read tcp 127.0.0.1:34233->127.0.0.1:57176: read: connection reset by peer
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_sumdb_golang (39.00s)
        script_test.go:134: 2023-05-19T18:13:31Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-3579343650/tmpdir4087203479/mod_sumdb_golang1509028640
        script_test.go:154: 
...
            	18:14:09.833763 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            	18:14:09.833766 http.c:715              <= Recv header: x-xss-protection: 0
            	18:14:09.833770 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	18:14:09.833772 http.c:715              <= Recv header:
            	18:14:09.874473 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	remote: UNAVAILABLE: The service is currently unavailable
            	remote: [type.googleapis.com/google.rpc.RequestInfo]
            	remote: request_id: "24b034ad0b7c4982a24cece7dc5195e7"
            	fatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 503
        script_test.go:154: FAIL: mod_sumdb_golang.txt:71: go list -mod=mod -x -m all: exit status 1
2023-05-22 21:48 linux-386-longtest go@65cc8e6a cmd/go.TestScript (log)
go test proxy running at GOPROXY=http://127.0.0.1:33915/mod
--- FAIL: TestScript (0.01s)
    --- FAIL: TestScript/mod_invalid_version (37.10s)
        script_test.go:270: 
            # (2023-05-22T22:26:17Z)
            # Regression test for golang.org/issue/27173: if the user (or go.mod file)
            # requests a pseudo-version that does not match both the module path and commit
            # metadata, reject it with a helpful error message.
            #
            # TODO(bcmills): Replace the github.com/pierrec/lz4 examples with something
...
            	22:26:54.017178 http.c:715              <= Recv header: x-xss-protection: 0
            	22:26:54.017182 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	22:26:54.017185 http.c:715              <= Recv header: date: Mon, 22 May 2023 22:26:54 GMT
            	22:26:54.017190 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	22:26:54.017193 http.c:715              <= Recv header:
            	22:26:54.017255 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	fatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 502
            [exit status 1]
            > stderr 'go: example.com@v0.0.0 requires\n\tgolang.org/x/text@v0.2.1-0.20170915032832-14c0d48ead0c: invalid pseudo-version: revision 14c0d48ead0c is not a descendent of preceding tag \(v0.2.0\)'
            FAIL: testdata/script/mod_invalid_version.txt:156: no match for `(?m)go: example.com@v0.0.0 requires\n\tgolang.org/x/text@v0.2.1-0.20170915032832-14c0d48ead0c: invalid pseudo-version: revision 14c0d48ead0c is not a descendent of preceding tag \(v0.2.0\)` found in stderr
2023-05-24 00:49 linux-386-longtest go@0c301519 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:36813
https://vcs-test.golang.org rerouted to https://127.0.0.1:44507
go test proxy running at GOPROXY=http://127.0.0.1:36053/mod
2023/05/24 01:31:37 http: TLS handshake error from 127.0.0.1:55346: EOF
2023/05/24 01:32:09 http: TLS handshake error from 127.0.0.1:50016: EOF
2023/05/24 01:32:09 http: TLS handshake error from 127.0.0.1:49990: EOF
2023/05/24 01:32:09 http: TLS handshake error from 127.0.0.1:50000: EOF
2023/05/24 01:32:09 http: TLS handshake error from 127.0.0.1:50038: EOF
2023/05/24 01:32:09 http: TLS handshake error from 127.0.0.1:50032: EOF
2023/05/24 01:32:09 http: TLS handshake error from 127.0.0.1:50042: EOF
...
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/mod_sumdb_golang (41.68s)
        script_test.go:134: 2023-05-24T01:31:34Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-2824260025/tmpdir602832143/mod_sumdb_golang3112110293
        script_test.go:154: 
            # Test default GOPROXY and GOSUMDB (0.112s)
            # Download direct from github. (16.850s)
            # Download from proxy.golang.org with go.sum entry already.
            # Use 'go list' instead of 'go get' since the latter may download extra go.mod
            # files not listed in go.sum. (1.940s)
...
            	01:32:15.026465 http.c:715              <= Recv header: x-frame-options: SAMEORIGIN
            	01:32:15.026470 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            	01:32:15.026474 http.c:715              <= Recv header: x-xss-protection: 0
            	01:32:15.026479 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	01:32:15.026570 http.c:715              <= Recv header: date: Wed, 24 May 2023 01:32:15 GMT
            	01:32:15.026581 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	01:32:15.026585 http.c:715              <= Recv header:
            	01:32:15.026655 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	fatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 502
        script_test.go:154: FAIL: mod_sumdb_golang.txt:71: go list -mod=mod -x -m all: exit status 1
2023-05-24 21:17 linux-amd64-longtest go@85e84a49 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44379
https://vcs-test.golang.org rerouted to https://127.0.0.1:35369
go test proxy running at GOPROXY=http://127.0.0.1:36559/mod
2023/05/24 21:36:17 http: TLS handshake error from 127.0.0.1:54946: EOF
2023/05/24 21:36:17 http: TLS handshake error from 127.0.0.1:54954: EOF
--- FAIL: TestScript (0.03s)
    --- FAIL: TestScript/mod_pseudo_cache (28.22s)
        script_test.go:134: 2023-05-24T21:35:55Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-1923987016/tmpdir2667342929/mod_pseudo_cache3738835145
        script_test.go:154: 
...
            # hash should use the highest such pseudo-version appropriate to the commit. (20.679s)
            > env GOPROXY=direct
            > go mod download -json golang.org/x/text@a1b916ed6726
            [stdout]
            {
            	"Path": "golang.org/x/text",
            	"Version": "a1b916ed6726",
            	"Error": "golang.org/x/text@a1b916ed6726: git ls-remote -q origin in /workdir/tmp/cmd-go-test-1923987016/tmpdir2667342929/mod_pseudo_cache3738835145/gopath/pkg/mod/cache/vcs/38515699458adac9c8b61a0b44f9ad7a5f6edd7bcc2d7fae95930ec78f71e1b4: exit status 128:\n\t21:36:02.900023 http.c:756              == Info: Couldn't find host go.googlesource.com in the .netrc file; using defaults\n\t21:36:02.910278 http.c:756              == Info:   Trying 74.125.202.82:443...\n\t21:36:02.911043 http.c:756              == Info: Connected to go.googlesource.com (74.125.202.82) port 443 (#0)\n\t21:36:02.964035 http.c:756              == Info: found 387 certificates in /etc/ssl/certs\n\t21:36:02.964117 http.c:756              == Info: ALPN, offering h2\n\t21:36:02.964120 http.c:756              == Info: ALPN, offering http/1.1\n\t21:36:02.973527 http.c:756              == Info: SSL connection using TLS1.3 / ECDHE_RSA_AES_256_GCM_SHA384\n\t21:36:02.975179 http.c:756              == Info: \t server certificate verification OK\n\t21:36:02.975198 http.c:756              == Info: \t server certificate status verification SKIPPED\n\t21:36:02.975338 http.c:756              == Info: \t common name: *.googlecode.com (matched)\n\t21:36:02.975351 http.c:756              == Info: \t server certificate expiration date OK\n\t21:36:02.975355 http.c:756              == Info: \t server certificate activation date OK\n\t21:36:02.975364 http.c:756              == Info: \t certificate public key: EC/ECDSA\n\t21:36:02.975367 http.c:756              == Info: \t certificate version: #3\n\t21:36:02.975377 http.c:756              == Info: \t subject: CN=*.googlecode.com\n\t21:36:02.975391 http.c:756              == Info: \t start date: Mon, 24 Apr 2023 12:00:31 GMT\n\t21:36:02.975395 http.c:756              == Info: \t expire date: Mon, 17 Jul 2023 12:00:30 GMT\n\t21:36:02.975418 http.c:756              == Info: \t issuer: C=US,O=Google Trust Services LLC,CN=GTS CA 1C3\n\t21:36:02.975436 http.c:756              == Info: ALPN, server accepted to use h2\n\t21:36:02.975470 http.c:756              == Info: Using HTTP2, server supports multi-use\n\t21:36:02.975488 http.c:756              == Info: Connection state changed (HTTP/2 confirmed)\n\t21:36:02.975494 http.c:756              == Info: Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0\n\t21:36:02.975552 http.c:756              == Info: Using Stream ID: 1 (easy handle 0x55a1b5540400)\n\t21:36:02.975584 http.c:703              =\u003e Send header, 0000000197 bytes (0x000000c5)\n\t21:36:02.975593 http.c:715              =\u003e Send header: GET /text/info/refs?service=git-upload-pack HTTP/2\n\t21:36:02.975596 http.c:715              =\u003e Send header: Host: go.googlesource.com\n\t21:36:02.975598 http.c:715              =\u003e Send header: user-agent: git/2.30.2\n\t21:36:02.975600 http.c:715              =\u003e Send header: accept: */*\n\t21:36:02.975602 http.c:715              =\u003e Send header: accept-encoding: deflate, gzip, br\n\t21:36:02.975605 http.c:715              =\u003e Send header: pragma: no-cache\n\t21:36:02.975607 http.c:715              =\u003e Send header: git-protocol: version=2\n\t21:36:02.975608 http.c:715              =\u003e Send header:\n\t21:36:02.975628 http.c:756              == Info: Connection state changed (MAX_CONCURRENT_STREAMS == 100)!\n\t21:36:23.102169 http.c:703              \u003c= Recv header, 0000000013 bytes (0x0000000d)\n\t21:36:23.102184 http.c:715              \u003c= Recv header: HTTP/2 502\n\t21:36:23.102188 http.c:703              \u003c= Recv header, 0000000022 bytes (0x00000016)\n\t21:36:23.102191 http.c:715              \u003c= Recv header: content-length: 1451\n\t21:36:23.102193 http.c:703              \u003c= Recv header, 0000000040 bytes (0x00000028)\n\t21:36:23.102195 http.c:715              \u003c= Recv header: content-type: text/html; charset=utf-8\n\t21:36:23.102198 http.c:703              \u003c= Recv header, 0000000033 bytes (0x00000021)\n\t21:36:23.102199 http.c:715              \u003c= Recv header: x-content-type-options: nosniff\n\t21:36:23.102201 http.c:703              \u003c= Recv header, 0000000029 bytes (0x0000001d)\n\t21:36:23.102203 http.c:715              \u003c= Recv header: x-frame-options: SAMEORIGIN\n\t21:36:23.102205 http.c:703              \u003c= Recv header, 0000000021 bytes (0x00000015)\n\t21:36:23.102207 http.c:715              \u003c= Recv header: x-xss-protection: 0\n\t21:36:23.102209 http.c:703              \u003c= Recv header, 0000000037 bytes (0x00000025)\n\t21:36:23.102210 http.c:715              \u003c= Recv header: date: Wed, 24 May 2023 21:36:23 GMT\n\t21:36:23.102213 http.c:703              \u003c= Recv header, 0000000002 bytes (0x00000002)\n\t21:36:23.102214 http.c:715              \u003c= Recv header:\n\t21:36:23.102246 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact\n\tfatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 502"
            }
        script_test.go:154: FAIL: mod_pseudo_cache.txt:23: go mod download -json golang.org/x/text@a1b916ed6726: exit status 1
2023-05-24 22:39 linux-amd64-longtest go@79a8997a cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:40907
https://vcs-test.golang.org rerouted to https://127.0.0.1:40383
go test proxy running at GOPROXY=http://127.0.0.1:45843/mod
2023/05/24 23:00:38 http: TLS handshake error from 127.0.0.1:57262: EOF
2023/05/24 23:00:38 http: TLS handshake error from 127.0.0.1:57278: EOF
--- FAIL: TestScript (0.03s)
    --- FAIL: TestScript/get_with_git_trace (47.32s)
        script_test.go:134: 2023-05-24T23:00:45Z
        script_test.go:136: $WORK=/workdir/tmp/cmd-go-test-982827170/tmpdir29936474/get_with_git_trace1731373262
        script_test.go:154: 
...
            23:01:33.044781 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            23:01:33.044783 http.c:715              <= Recv header: x-xss-protection: 0
            23:01:33.044785 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            23:01:33.044787 http.c:715              <= Recv header: date: Wed, 24 May 2023 23:01:33 GMT
            23:01:33.044790 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            23:01:33.044791 http.c:715              <= Recv header:
            23:01:33.044829 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            fatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 502
            package golang.org/x/text: exit status 128
        script_test.go:154: FAIL: get_with_git_trace.txt:9: go get golang.org/x/text: exit status 1
2023-05-25 17:51 linux-amd64-longtest go@ff07c540 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:42051
https://vcs-test.golang.org rerouted to https://127.0.0.1:36285
go test proxy running at GOPROXY=http://127.0.0.1:43577/mod
2023/05/25 18:19:33 http: TLS handshake error from 127.0.0.1:58574: EOF
2023/05/25 18:19:33 http: TLS handshake error from 127.0.0.1:58610: read tcp 127.0.0.1:36285->127.0.0.1:58610: read: connection reset by peer
2023/05/25 18:19:33 http: TLS handshake error from 127.0.0.1:58634: read tcp 127.0.0.1:36285->127.0.0.1:58634: read: connection reset by peer
2023/05/25 18:19:33 http: TLS handshake error from 127.0.0.1:58614: read tcp 127.0.0.1:36285->127.0.0.1:58614: read: connection reset by peer
2023/05/25 18:19:33 http: TLS handshake error from 127.0.0.1:58620: read tcp 127.0.0.1:36285->127.0.0.1:58620: read: connection reset by peer
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_invalid_version (39.72s)
...
            	18:19:57.066631 http.c:715              <= Recv header: x-xss-protection: 0
            	18:19:57.066635 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            	18:19:57.066639 http.c:715              <= Recv header: date: Thu, 25 May 2023 18:19:57 GMT
            	18:19:57.066659 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	18:19:57.066662 http.c:715              <= Recv header:
            	18:19:57.066714 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	fatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 502
            [exit status 1]
            > stderr 'golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0c\+incompatible: invalid version: \+incompatible suffix not allowed: major version v0 is compatible'
        script_test.go:154: FAIL: mod_invalid_version.txt:179: stderr 'golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0c\+incompatible: invalid version: \+incompatible suffix not allowed: major version v0 is compatible': no match for `(?m)golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0c\+incompatible: invalid version: \+incompatible suffix not allowed: major version v0 is compatible` in stderr

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- (pkg ~ `^cmd/go` || pkg ~ `^golang.org/x/mod`) && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out`)
2023-07-20 23:09 linux-amd64-longtest-race go@a04a665a cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:33369
https://vcs-test.golang.org rerouted to https://127.0.0.1:35219
go test proxy running at GOPROXY=http://127.0.0.1:42207/mod
2023/07/20 23:57:26 http: TLS handshake error from 127.0.0.1:60220: EOF
2023/07/20 23:57:26 http: TLS handshake error from 127.0.0.1:60206: EOF
2023/07/20 23:57:26 http: TLS handshake error from 127.0.0.1:60230: EOF
--- FAIL: TestScript (1.10s)
    --- FAIL: TestScript/mod_invalid_version (57.27s)
        script_test.go:132: 2023-07-20T23:54:55Z
        script_test.go:134: $WORK=/workdir/tmp/cmd-go-test-2664021906/tmpdir4164476777/mod_invalid_version4218640591
...
            	23:55:52.403970 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	23:55:52.403971 http.c:715              <= Recv header:
            	23:55:52.426283 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            	remote: UNAVAILABLE: The service is currently unavailable
            	remote: [type.googleapis.com/google.rpc.RequestInfo]
            	remote: request_id: "ecfa9aa481a94192ba48ecd247081dc1"
            	fatal: unable to access 'https://go.googlesource.com/text/': The requested URL returned error: 503
            [exit status 1]
            > stderr 'golang.org/x/text@v1.999.999-0.20170915032832-14c0d48ead0c: invalid pseudo-version: preceding tag \(v1.999.998\) not found'
        script_test.go:156: FAIL: testdata/script/mod_invalid_version.txt:103: stderr 'golang.org/x/text@v1.999.999-0.20170915032832-14c0d48ead0c: invalid pseudo-version: preceding tag \(v1.999.998\) not found': no match for `(?m)golang.org/x/text@v1.999.999-0.20170915032832-14c0d48ead0c: invalid pseudo-version: preceding tag \(v1.999.998\) not found` in stderr

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- (pkg ~ `^cmd/go` || pkg ~ `^golang.org/x/mod`) && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out`)
2023-07-31 03:58 linux-386-longtest go@5f8a2fdf cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:34943
https://vcs-test.golang.org rerouted to https://127.0.0.1:36997
go test proxy running at GOPROXY=http://127.0.0.1:45767/mod
2023/07/31 05:17:03 http: TLS handshake error from 127.0.0.1:50592: EOF
2023/07/31 05:17:50 http: TLS handshake error from 127.0.0.1:32850: EOF
2023/07/31 05:17:50 http: TLS handshake error from 127.0.0.1:32898: EOF
2023/07/31 05:18:01 http: TLS handshake error from 127.0.0.1:37318: EOF
2023/07/31 05:18:01 http: TLS handshake error from 127.0.0.1:37350: EOF
2023/07/31 05:18:01 http: TLS handshake error from 127.0.0.1:37382: EOF
2023/07/31 05:18:01 http: TLS handshake error from 127.0.0.1:37356: EOF
...
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/get_legacy (145.86s)
        script_test.go:132: 2023-07-31T05:17:43Z
        script_test.go:134: $WORK=/workdir/tmp/cmd-go-test-1177741453/tmpdir2327972449/get_legacy4093423316
        script_test.go:156: 
            # This test was converted from a test in vendor_test.go (which no longer exists).
            # That seems to imply that it's about vendoring semantics, but the test doesn't
            # use 'go -mod=vendor' (and none of the fetched repos have vendor folders).
            # The test still seems to be useful as a test of direct-mode go get. (145.848s)
            > [short] skip
...
            # cd /workdir/tmp/cmd-go-test-1177741453/tmpdir2327972449/get_legacy4093423316/tmp/d2/src/github.com/rsc; git clone -- https://github.com/rsc/vgotest5 /workdir/tmp/cmd-go-test-1177741453/tmpdir2327972449/get_legacy4093423316/tmp/d2/src/github.com/rsc/vgotest5
            Cloning into '/workdir/tmp/cmd-go-test-1177741453/tmpdir2327972449/get_legacy4093423316/tmp/d2/src/github.com/rsc/vgotest5'...
            05:17:58.878734 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            05:17:58.892679 http.c:756              == Info:   Trying 140.82.114.3:443...
            05:20:08.051781 http.c:756              == Info: connect to 140.82.114.3 port 443 failed: Connection timed out
            05:20:08.051837 http.c:756              == Info: Failed to connect to github.com port 443: Connection timed out
            05:20:08.051856 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'https://github.com/rsc/vgotest5/': Failed to connect to github.com port 443: Connection timed out
            package github.com/rsc/vgotest5: exit status 128
        script_test.go:156: FAIL: testdata/script/get_legacy.txt:35: go get github.com/rsc/vgotest5 github.com/rsc/vgotest4: exit status 1
2023-07-31 03:58 linux-amd64-longtest go@5f8a2fdf cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:45979
https://vcs-test.golang.org rerouted to https://127.0.0.1:34237
go test proxy running at GOPROXY=http://127.0.0.1:39505/mod
2023/07/31 05:11:17 http: TLS handshake error from 127.0.0.1:36448: EOF
2023/07/31 05:11:17 http: TLS handshake error from 127.0.0.1:36540: EOF
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_invalid_version (39.59s)
        script_test.go:132: 2023-07-31T05:11:07Z
        script_test.go:134: $WORK=/workdir/tmp/cmd-go-test-3772698598/tmpdir2708628340/mod_invalid_version540474986
        script_test.go:156: 
...
            matched: go: example.com@v0.0.0 requires
            	golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0: invalid pseudo-version: revision is shorter than canonical (expected 14c0d48ead0c)
            > cd ..
            > ! go list -m golang.org/x/text
            [stderr]
            go: unrecognized import path "golang.org/x/text": https fetch: Get "https://golang.org/x/text?go-get=1": dial tcp 142.250.103.141:443: i/o timeout
            go: golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0: unrecognized import path "golang.org/x/text": https fetch: Get "https://golang.org/x/text?go-get=1": dial tcp 142.250.103.141:443: i/o timeout
            [exit status 1]
            > stderr 'golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0: invalid pseudo-version: revision is shorter than canonical \(expected 14c0d48ead0c\)'
        script_test.go:156: FAIL: testdata/script/mod_invalid_version.txt:63: stderr 'golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0: invalid pseudo-version: revision is shorter than canonical \(expected 14c0d48ead0c\)': no match for `(?m)golang.org/x/text@v0.1.1-0.20170915032832-14c0d48ead0: invalid pseudo-version: revision is shorter than canonical \(expected 14c0d48ead0c\)` in stderr

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- (pkg ~ `^cmd/go` || pkg ~ `^golang.org/x/mod`) && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out`)
2023-08-03 15:55 linux-arm64-longtest go@86576037 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:43271
https://vcs-test.golang.org rerouted to https://127.0.0.1:41633
go test proxy running at GOPROXY=http://127.0.0.1:34275/mod
2023/08/03 16:20:05 http: TLS handshake error from 127.0.0.1:38230: EOF
2023/08/03 16:20:14 http: TLS handshake error from 127.0.0.1:53682: EOF
2023/08/03 16:20:20 http: TLS handshake error from 127.0.0.1:34130: read tcp 127.0.0.1:41633->127.0.0.1:34130: read: connection reset by peer
2023/08/03 16:20:20 http: TLS handshake error from 127.0.0.1:34108: read tcp 127.0.0.1:41633->127.0.0.1:34108: read: connection reset by peer
2023/08/03 16:20:21 http: TLS handshake error from 127.0.0.1:34144: read tcp 127.0.0.1:41633->127.0.0.1:34144: read: connection reset by peer
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/mod_download_hash (132.02s)
...
    --- FAIL: TestScript/mod_get_pseudo (142.62s)
        script_test.go:132: 2023-08-03T16:20:05Z
        script_test.go:134: $WORK=/tmp/workdir/tmp/cmd-go-test-2079151249/tmpdir1859465625/mod_get_pseudo3269739799
        script_test.go:156: 
            > env GO111MODULE=on
            # Testing git->module converter's generation of +incompatible tags; turn off proxy. (0.000s)
            # We can resolve the @master branch without unshallowing the local repository
            # (even with older gits), so try that before we do anything else.
            # (This replicates https://golang.org/issue/26713 with git 2.7.4.) (5.661s)
            # get should include incompatible tags in "latest" calculation. (0.381s)
...
            # cd /tmp/workdir/tmp/cmd-go-test-2079151249/tmpdir1859465625/vendor_test_issue118643406267237/gopath/src/github.com/rsc; git clone -- https://github.com/rsc/go-get-issue-11864 /tmp/workdir/tmp/cmd-go-test-2079151249/tmpdir1859465625/vendor_test_issue118643406267237/gopath/src/github.com/rsc/go-get-issue-11864
            Cloning into '/tmp/workdir/tmp/cmd-go-test-2079151249/tmpdir1859465625/vendor_test_issue118643406267237/gopath/src/github.com/rsc/go-get-issue-11864'...
            16:20:46.739605 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            16:20:46.751090 http.c:756              == Info:   Trying 140.82.114.4:443...
            16:22:56.219106 http.c:756              == Info: connect to 140.82.114.4 port 443 failed: Connection timed out
            16:22:56.219160 http.c:756              == Info: Failed to connect to github.com port 443: Connection timed out
            16:22:56.219174 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'https://github.com/rsc/go-get-issue-11864/': Failed to connect to github.com port 443: Connection timed out
            package github.com/rsc/go-get-issue-11864: exit status 128
        script_test.go:156: FAIL: testdata/script/vendor_test_issue11864.txt:5: go get github.com/rsc/go-get-issue-11864: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- (pkg ~ `^cmd/go` || pkg ~ `^golang.org/x/mod`) && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out`)
2023-08-03 15:43 linux-386-longtest go@3ca90ed8 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:37387
https://vcs-test.golang.org rerouted to https://127.0.0.1:35251
go test proxy running at GOPROXY=http://127.0.0.1:39849/mod
2023/08/03 16:18:09 http: TLS handshake error from 127.0.0.1:45764: EOF
2023/08/03 16:18:09 http: TLS handshake error from 127.0.0.1:45836: EOF
2023/08/03 16:18:09 http: TLS handshake error from 127.0.0.1:45872: EOF
2023/08/03 16:18:09 http: TLS handshake error from 127.0.0.1:45854: EOF
2023/08/03 16:18:09 http: TLS handshake error from 127.0.0.1:45850: EOF
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/gopath_moved_repo (134.21s)
...
    --- FAIL: TestScript/get_domain_root (135.26s)
        script_test.go:132: 2023-08-03T16:19:43Z
        script_test.go:134: $WORK=/workdir/tmp/cmd-go-test-4124404089/tmpdir2247935811/get_domain_root2302414150
        script_test.go:156: 
            # Tests issue #9357
            # go get foo.io (not foo.io/subdir) was not working consistently. (0.000s)
            # go-get-issue-9357.appspot.com is running
            # the code at github.com/rsc/go-get-issue-9357,
            # a trivial Go on App Engine app that serves a
            # <meta> tag for the domain root. (135.262s)
...
            [stderr]
            # cd /workdir/tmp/cmd-go-test-4124404089/tmpdir2247935811/get_insecure_update2338765681/gopath/src/github.com/golang/example; git pull --ff-only
            16:20:46.648946 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            16:20:46.652612 http.c:756              == Info:   Trying 140.82.114.4:80...
            16:22:55.755615 http.c:756              == Info: connect to 140.82.114.4 port 80 failed: Connection timed out
            16:22:55.755672 http.c:756              == Info: Failed to connect to github.com port 80: Connection timed out
            16:22:55.755686 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'http://github.com/golang/example/': Failed to connect to github.com port 80: Connection timed out
            package github.com/golang/example/hello: exit status 1
        script_test.go:156: FAIL: testdata/script/get_insecure_update.txt:14: go get -d -u -f github.com/golang/example/hello: exit status 1

watchflakes

@gopherbot
Copy link

Found new dashboard test flakes for:

#!watchflakes
post <- (pkg ~ `^cmd/go` || pkg ~ `^golang.org/x/mod`) && (
	`Failed to connect to github.com port 443: Connection refused` ||
	`remote: Internal Server Error.` ||
	`error: RPC failed; HTTP 500` ||
	`GnuTLS recv error` ||
	`The TLS connection was non-properly terminated` ||
	`connect: network is unreachable` ||
	`502 Bad Gateway` ||
	`remote: Repository not found.` ||
	`The requested URL returned error: 50\d` ||
	`system library:.*:Connection reset by peer` ||
	`dial tcp .*: i/o timeout` ||
	`Failed to connect to .* port 443: Connection timed out`)
2023-08-15 14:52 linux-amd64-longtest-race go@b51a4dd6 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:41617
https://vcs-test.golang.org rerouted to https://127.0.0.1:45489
go test proxy running at GOPROXY=http://127.0.0.1:39395/mod
2023/08/15 16:02:23 http: TLS handshake error from 127.0.0.1:46836: EOF
2023/08/15 16:03:01 http: TLS handshake error from 127.0.0.1:38702: EOF
2023/08/15 16:04:20 http: TLS handshake error from 127.0.0.1:37682: EOF
2023/08/15 16:04:20 http: TLS handshake error from 127.0.0.1:37722: EOF
--- FAIL: TestScript (1.16s)
    --- FAIL: TestScript/get_test_only (3.41s)
        script_test.go:132: 2023-08-15T16:04:14Z
...
            16:04:17.800458 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            16:04:17.800460 http.c:715              <= Recv header: x-xss-protection: 0
            16:04:17.800462 http.c:703              <= Recv header, 0000000037 bytes (0x00000025)
            16:04:17.800464 http.c:715              <= Recv header: date: Tue, 15 Aug 2023 16:04:17 GMT
            16:04:17.800467 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            16:04:17.800470 http.c:715              <= Recv header:
            16:04:17.800523 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            fatal: unable to access 'https://go.googlesource.com/tour/': The requested URL returned error: 500
            package golang.org/x/tour/content...: exit status 1
        script_test.go:156: FAIL: testdata/script/get_test_only.txt:6: go get -t golang.org/x/tour/content...: exit status 1

watchflakes