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 · 113 comments
Open

cmd/go: test failures due to network #55164

rsc opened this issue Sep 20, 2022 · 113 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)

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` || 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-18 23:57 darwin-amd64-11_0 go@1e9875ca cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:53584
https://vcs-test.golang.org rerouted to https://127.0.0.1:53585
go test proxy running at GOPROXY=http://127.0.0.1:53586/mod
2024/03/18 20:29:48 http: TLS handshake error from 127.0.0.1:54428: read tcp 127.0.0.1:53585->127.0.0.1:54428: read: connection reset by peer
--- FAIL: TestScript (1.25s)
    --- FAIL: TestScript/mod_import_toolchain (1.01s)
        script_test.go:136: 2024-03-19T00:29:23Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-2180313977/tmpdir1697348932/mod_import_toolchain3942392337
        script_test.go:160: 
            # This test verifies that 'go get' and 'go mod tidy' switch to a newer toolchain
...
            go: example.net/b@v0.1.0: module ./b1 requires go >= 1.22.0 (running go 1.21.0; GOTOOLCHAIN=local)
            [exit status 1]
            > stderr '^go: example.net/b@v0.1.0: module ./b1 requires go >= 1.22.0 \(running go 1.21.0; GOTOOLCHAIN=local\)$'
            matched: go: example.net/b@v0.1.0: module ./b1 requires go >= 1.22.0 (running go 1.21.0; GOTOOLCHAIN=local)
            > env GOTOOLCHAIN=auto
            > go get -v .
            [stderr]
            go: trying upgrade to example.net/b@v0.1.0
            go: module ./b1 requires go >= 1.22.0; switching to go1.22.9
        script_test.go:160: FAIL: testdata/script/mod_import_toolchain.txt:24: go get -v .: signal: illegal instruction

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-19 11:34 darwin-amd64-longtest go@207511a0 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:50274
https://vcs-test.golang.org rerouted to https://127.0.0.1:50275
go test proxy running at GOPROXY=http://127.0.0.1:50276/mod
2024/03/19 09:14:39 http: TLS handshake error from 127.0.0.1:50955: read tcp 127.0.0.1:50275->127.0.0.1:50955: read: connection reset by peer
--- FAIL: TestScript (0.84s)
    --- FAIL: TestScript/mod_get_direct (105.93s)
        script_test.go:136: 2024-03-19T13:15:04Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-645823445/tmpdir1039459990/mod_get_direct2282966876
        script_test.go:160: 
            # Regression test for golang.org/issue/34092: with an empty module cache,
...
            	09:16:49.774704 http.c:678              == Info: Failed sending HTTP2 data
            	09:16:49.774728 http.c:678              == Info: LibreSSL SSL_write: error:02FFF020:system library:func(4095):Broken pipe, errno 32
            	09:16:49.774732 http.c:678              == Info: Failed sending HTTP2 data
            	09:16:49.774754 http.c:678              == Info: Closing connection 0
            	error: RPC failed; curl 55 LibreSSL SSL_write: error:02FFF020:system library:func(4095):Broken pipe, errno 32
            	error: 4075 bytes of body are still expected
            	fetch-pack: unexpected disconnect while reading sideband packet
            	fatal: early EOF
            	fatal: fetch-pack: invalid index-pack output
        script_test.go:160: FAIL: testdata/script/mod_get_direct.txt:12: go list -m cloud.google.com/go@main: 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-21 11:49 darwin-amd64-longtest go@cff7267e cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:49929
https://vcs-test.golang.org rerouted to https://127.0.0.1:49930
go test proxy running at GOPROXY=http://127.0.0.1:49931/mod
2024/03/21 09:00:12 http: TLS handshake error from 127.0.0.1:51164: read tcp 127.0.0.1:49930->127.0.0.1:51164: read: connection reset by peer
2024/03/21 09:00:12 http: TLS handshake error from 127.0.0.1:51165: read tcp 127.0.0.1:49930->127.0.0.1:51165: read: connection reset by peer
--- FAIL: TestScript (0.78s)
    --- FAIL: TestScript/mod_get_direct (122.50s)
        script_test.go:136: 2024-03-21T13:00:28Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-1288209356/tmpdir3608272145/mod_get_direct920031510
        script_test.go:160: 
...
            	09:02:30.827983 http.c:678              == Info: Failed sending HTTP2 data
            	09:02:30.828011 http.c:678              == Info: LibreSSL SSL_write: error:02FFF020:system library:func(4095):Broken pipe, errno 32
            	09:02:30.828015 http.c:678              == Info: Failed sending HTTP2 data
            	09:02:30.828037 http.c:678              == Info: Closing connection 0
            	error: RPC failed; curl 55 LibreSSL SSL_write: error:02FFF020:system library:func(4095):Broken pipe, errno 32
            	error: 3586 bytes of body are still expected
            	fetch-pack: unexpected disconnect while reading sideband packet
            	fatal: early EOF
            	fatal: fetch-pack: invalid index-pack output
        script_test.go:160: FAIL: testdata/script/mod_get_direct.txt:12: go list -m cloud.google.com/go@main: exit status 1
2024-03-22 04:42 darwin-amd64-longtest go@a6ecdf29 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:50572
https://vcs-test.golang.org rerouted to https://127.0.0.1:50573
go test proxy running at GOPROXY=http://127.0.0.1:50574/mod
2024/03/22 01:53:56 http: TLS handshake error from 127.0.0.1:51901: read tcp 127.0.0.1:50573->127.0.0.1:51901: read: connection reset by peer
--- FAIL: TestScript (0.99s)
    --- FAIL: TestScript/work_get_toolchain (0.36s)
        script_test.go:136: 2024-03-22T06:01:05Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-530243575/tmpdir1646556073/work_get_toolchain3359269626
        script_test.go:160: 
            # go get should update the go and toolchain lines in go.work (0.294s)
            > env TESTGO_VERSION=go1.21
            > env TESTGO_VERSION_SWITCH=switch
            > env GOTOOLCHAIN=auto
            > cp go.mod.new go.mod
            > cp go.work.new go.work
            > go get rsc.io/needgo121 rsc.io/needgo122 rsc.io/needgo123 rsc.io/needall
            [stderr]
            go: downloading rsc.io/needgo121 v0.0.1
            go: downloading rsc.io/needgo122 v0.0.1
            go: downloading rsc.io/needall v0.0.1
            go: downloading rsc.io/needgo123 v0.0.1
            go: rsc.io/needall@v0.0.1 requires go >= 1.23; switching to go1.23.9
        script_test.go:160: FAIL: testdata/script/work_get_toolchain.txt:7: go get rsc.io/needgo121 rsc.io/needgo122 rsc.io/needgo123 rsc.io/needall: signal: illegal instruction

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-25 19:53 linux-arm64-longtest go@4c2b1e0f cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:37059
https://vcs-test.golang.org rerouted to https://127.0.0.1:43927
go test proxy running at GOPROXY=http://127.0.0.1:36155/mod
2024/03/25 20:18:01 http: TLS handshake error from 127.0.0.1:47524: read tcp 127.0.0.1:43927->127.0.0.1:47524: read: connection reset by peer
2024/03/25 20:18:01 http: TLS handshake error from 127.0.0.1:47516: read tcp 127.0.0.1:43927->127.0.0.1:47516: read: connection reset by peer
2024/03/25 20:18:01 http: TLS handshake error from 127.0.0.1:47510: read tcp 127.0.0.1:43927->127.0.0.1:47510: read: connection reset by peer
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/build_runtime_gcflags (1.16s)
        script_test.go:136: 2024-03-25T20:18:29Z
        script_test.go:138: $WORK=/tmp/workdir/tmp/cmd-go-test-1729272622/tmpdir4108791620/build_runtime_gcflags3986906805
...
    --- FAIL: TestScript/cover_sync_atomic_import (7.88s)
        script_test.go:136: 2024-03-25T20:18:32Z
        script_test.go:138: $WORK=/tmp/workdir/tmp/cmd-go-test-1729272622/tmpdir4108791620/cover_sync_atomic_import3902982449
        script_test.go:160: 
            > [short] skip
            [condition not met]
            > [compiler:gccgo] skip # gccgo has no cover tool
            [condition not met]
            > [!GOEXPERIMENT:coverageredesign] skip
            [condition not met]
...
            # sync/atomic itself (see #57445). Just a short test run is needed
            # since we're mainly interested in making sure the test builds and can
            # execute at least one test. (7.070s)
            > go test -short -covermode=atomic -run=TestStoreInt64 sync/atomic
            [stdout]
            ok  	sync/atomic	0.044s	coverage: 28.6% of statements
            > go test -short -covermode=atomic -run=TestAnd8 runtime/internal/atomic
            [stderr]
            package runtime/internal/atomic is not in std (/tmp/workdir/go/src/runtime/internal/atomic)
        script_test.go:160: FAIL: testdata/script/cover_sync_atomic_import.txt:14: go test -short -covermode=atomic -run=TestAnd8 runtime/internal/atomic: exit status 1
2024-03-25 21:01 linux-amd64-longtest go@e7bdc881 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:37491
https://vcs-test.golang.org rerouted to https://127.0.0.1:33657
go test proxy running at GOPROXY=http://127.0.0.1:40671/mod
2024/03/25 21:32:56 http: TLS handshake error from 127.0.0.1:46334: read tcp 127.0.0.1:33657->127.0.0.1:46334: read: connection reset by peer
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/cover_sync_atomic_import (13.59s)
        script_test.go:136: 2024-03-25T21:33:20Z
        script_test.go:138: $WORK=/workdir/tmp/cmd-go-test-3075570232/tmpdir1259385850/cover_sync_atomic_import1083932859
        script_test.go:160: 
            > [short] skip
...
    --- FAIL: TestScript/build_runtime_gcflags (2.88s)
        script_test.go:136: 2024-03-25T21:34:27Z
        script_test.go:138: $WORK=/workdir/tmp/cmd-go-test-3075570232/tmpdir1259385850/build_runtime_gcflags1962529911
        script_test.go:160: 
            > env GO111MODULE=off
            > [short] skip # rebuilds all of std
            [condition not met]
            # Set up fresh GOCACHE. (0.000s)
            # Verify the standard library (specifically runtime/internal/atomic) can be
            # built with -gcflags when -n is given. See golang.org/issue/29346. (2.856s)
...
            packagefile strings=$WORK/b053/_pkg_.a
            packagefile sync=$WORK/b022/_pkg_.a
            packagefile syscall=$WORK/b040/_pkg_.a
            packagefile testing=$WORK/b236/_pkg_.a
            packagefile time=$WORK/b044/_pkg_.a
            EOF
            /workdir/go/pkg/tool/linux_amd64/compile -o $WORK/b289/_pkg_.a -trimpath "$WORK/b289=>" -p vendor/golang.org/x/net/nettest -std -complete -buildid EPHvlSFWLc77FsPKZU8K/EPHvlSFWLc77FsPKZU8K -c=4 -l -nolocalimports -importcfg $WORK/b289/importcfg -pack /workdir/go/src/vendor/golang.org/x/net/nettest/conntest.go /workdir/go/src/vendor/golang.org/x/net/nettest/nettest.go /workdir/go/src/vendor/golang.org/x/net/nettest/nettest_unix.go
            /workdir/go/pkg/tool/linux_amd64/buildid -w $WORK/b289/_pkg_.a # internal
            > stderr 'compile.* runtime/internal/atomic .* -l'
        script_test.go:160: FAIL: testdata/script/build_runtime_gcflags.txt:11: stderr 'compile.* runtime/internal/atomic .* -l': no match for `(?m)compile.* runtime/internal/atomic .* -l` 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-25 19:53 linux-386-longtest go@4c2b1e0f cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44461
https://vcs-test.golang.org rerouted to https://127.0.0.1:40645
go test proxy running at GOPROXY=http://127.0.0.1:33931/mod
2024/03/25 20:32:22 http: TLS handshake error from 127.0.0.1:52940: EOF
2024/03/25 20:32:22 http: TLS handshake error from 127.0.0.1:52974: EOF
2024/03/25 20:32:41 http: TLS handshake error from 127.0.0.1:36808: read tcp 127.0.0.1:40645->127.0.0.1:36808: read: connection reset by peer
2024/03/25 20:32:41 http: TLS handshake error from 127.0.0.1:36788: EOF
2024/03/25 20:32:41 http: TLS handshake error from 127.0.0.1:36862: EOF
2024/03/25 20:32:41 http: TLS handshake error from 127.0.0.1:36824: EOF
2024/03/25 20:32:41 http: TLS handshake error from 127.0.0.1:36840: EOF
--- FAIL: TestScript (0.08s)
    --- FAIL: TestScript/cover_sync_atomic_import (15.86s)
        script_test.go:136: 2024-03-25T20:33:00Z
        script_test.go:138: $WORK=/workdir/tmp/cmd-go-test-402457389/tmpdir3531437485/cover_sync_atomic_import1025144181
        script_test.go:160: 
            > [short] skip
            [condition not met]
            > [compiler:gccgo] skip # gccgo has no cover tool
            [condition not met]
            > [!GOEXPERIMENT:coverageredesign] skip
...
            packagefile strings=$WORK/b053/_pkg_.a
            EOF
            cd /workdir/tmp/cmd-go-test-402457389/tmpdir3531437485/build_runtime_gcflags3517440807/gopath/src
            /workdir/go/pkg/tool/linux_386/compile -o $WORK/b287/_pkg_.a -trimpath "$WORK/b287=>" -p vendor/golang.org/x/sys/cpu -std -buildid LZFJchlfp1qLgTnIlmeo/LZFJchlfp1qLgTnIlmeo -symabis $WORK/b287/symabis -c=4 -l -nolocalimports -importcfg $WORK/b287/importcfg -pack -asmhdr $WORK/b287/go_asm.h /workdir/go/src/vendor/golang.org/x/sys/cpu/byteorder.go /workdir/go/src/vendor/golang.org/x/sys/cpu/cpu.go /workdir/go/src/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go /workdir/go/src/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go /workdir/go/src/vendor/golang.org/x/sys/cpu/cpu_x86.go /workdir/go/src/vendor/golang.org/x/sys/cpu/endian_little.go /workdir/go/src/vendor/golang.org/x/sys/cpu/hwcap_linux.go /workdir/go/src/vendor/golang.org/x/sys/cpu/parse.go /workdir/go/src/vendor/golang.org/x/sys/cpu/runtime_auxv.go /workdir/go/src/vendor/golang.org/x/sys/cpu/runtime_auxv_go121.go
            cd /workdir/go/src/vendor/golang.org/x/sys/cpu
            /workdir/go/pkg/tool/linux_386/asm -p vendor/golang.org/x/sys/cpu -trimpath "$WORK/b287=>" -I $WORK/b287/ -I /workdir/go/pkg/include -D GOOS_linux -D GOARCH_386 -D GO386_sse2 -o $WORK/b287/cpu_x86.o ./cpu_x86.s
            /workdir/go/pkg/tool/linux_386/pack r $WORK/b287/_pkg_.a $WORK/b287/cpu_x86.o # internal
            /workdir/go/pkg/tool/linux_386/buildid -w $WORK/b287/_pkg_.a # internal
            > stderr 'compile.* runtime/internal/atomic .* -l'
        script_test.go:160: FAIL: testdata/script/build_runtime_gcflags.txt:11: stderr 'compile.* runtime/internal/atomic .* -l': no match for `(?m)compile.* runtime/internal/atomic .* -l` in stderr
2024-03-25 21:01 linux-386-longtest go@e7bdc881 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:36201
https://vcs-test.golang.org rerouted to https://127.0.0.1:38129
go test proxy running at GOPROXY=http://127.0.0.1:35061/mod
2024/03/25 21:38:36 http: TLS handshake error from 127.0.0.1:48086: EOF
2024/03/25 21:39:31 http: TLS handshake error from 127.0.0.1:56662: read tcp 127.0.0.1:38129->127.0.0.1:56662: read: connection reset by peer
2024/03/25 21:39:31 http: TLS handshake error from 127.0.0.1:56658: read tcp 127.0.0.1:38129->127.0.0.1:56658: read: connection reset by peer
2024/03/25 21:39:31 http: TLS handshake error from 127.0.0.1:56712: read tcp 127.0.0.1:38129->127.0.0.1:56712: read: connection reset by peer
2024/03/25 21:39:31 http: TLS handshake error from 127.0.0.1:56688: EOF
2024/03/25 21:39:31 http: TLS handshake error from 127.0.0.1:56718: EOF
--- FAIL: TestScript (0.07s)
    --- FAIL: TestScript/cover_sync_atomic_import (13.45s)
        script_test.go:136: 2024-03-25T21:38:13Z
        script_test.go:138: $WORK=/workdir/tmp/cmd-go-test-3612757799/tmpdir2539044159/cover_sync_atomic_import885058915
        script_test.go:160: 
            > [short] skip
            [condition not met]
            > [compiler:gccgo] skip # gccgo has no cover tool
            [condition not met]
            > [!GOEXPERIMENT:coverageredesign] skip
            [condition not met]
...
            packagefile strings=$WORK/b053/_pkg_.a
            EOF
            cd /workdir/tmp/cmd-go-test-3612757799/tmpdir2539044159/build_runtime_gcflags50672350/gopath/src
            /workdir/go/pkg/tool/linux_386/compile -o $WORK/b287/_pkg_.a -trimpath "$WORK/b287=>" -p vendor/golang.org/x/sys/cpu -std -buildid AM-MF7JLZ2Ku5D_nKHcy/AM-MF7JLZ2Ku5D_nKHcy -symabis $WORK/b287/symabis -c=4 -l -nolocalimports -importcfg $WORK/b287/importcfg -pack -asmhdr $WORK/b287/go_asm.h /workdir/go/src/vendor/golang.org/x/sys/cpu/byteorder.go /workdir/go/src/vendor/golang.org/x/sys/cpu/cpu.go /workdir/go/src/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go /workdir/go/src/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go /workdir/go/src/vendor/golang.org/x/sys/cpu/cpu_x86.go /workdir/go/src/vendor/golang.org/x/sys/cpu/endian_little.go /workdir/go/src/vendor/golang.org/x/sys/cpu/hwcap_linux.go /workdir/go/src/vendor/golang.org/x/sys/cpu/parse.go /workdir/go/src/vendor/golang.org/x/sys/cpu/runtime_auxv.go /workdir/go/src/vendor/golang.org/x/sys/cpu/runtime_auxv_go121.go
            cd /workdir/go/src/vendor/golang.org/x/sys/cpu
            /workdir/go/pkg/tool/linux_386/asm -p vendor/golang.org/x/sys/cpu -trimpath "$WORK/b287=>" -I $WORK/b287/ -I /workdir/go/pkg/include -D GOOS_linux -D GOARCH_386 -D GO386_sse2 -o $WORK/b287/cpu_x86.o ./cpu_x86.s
            /workdir/go/pkg/tool/linux_386/pack r $WORK/b287/_pkg_.a $WORK/b287/cpu_x86.o # internal
            /workdir/go/pkg/tool/linux_386/buildid -w $WORK/b287/_pkg_.a # internal
            > stderr 'compile.* runtime/internal/atomic .* -l'
        script_test.go:160: FAIL: testdata/script/build_runtime_gcflags.txt:11: stderr 'compile.* runtime/internal/atomic .* -l': no match for `(?m)compile.* runtime/internal/atomic .* -l` 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-25 19:53 linux-amd64-longtest-race go@4c2b1e0f cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:39571
https://vcs-test.golang.org rerouted to https://127.0.0.1:45075
go test proxy running at GOPROXY=http://127.0.0.1:45993/mod
2024/03/25 21:03:03 http: TLS handshake error from 127.0.0.1:42944: read tcp 127.0.0.1:45075->127.0.0.1:42944: read: connection reset by peer
2024/03/25 21:03:03 http: TLS handshake error from 127.0.0.1:42958: EOF
2024/03/25 21:03:03 http: TLS handshake error from 127.0.0.1:42952: EOF
2024/03/25 21:04:47 http: TLS handshake error from 127.0.0.1:43720: read tcp 127.0.0.1:45075->127.0.0.1:43720: read: connection reset by peer
2024/03/25 21:04:47 http: TLS handshake error from 127.0.0.1:43730: read tcp 127.0.0.1:45075->127.0.0.1:43730: read: connection reset by peer
--- FAIL: TestScript (1.19s)
    --- FAIL: TestScript/build_runtime_gcflags (5.47s)
...
    --- FAIL: TestScript/cover_sync_atomic_import (12.95s)
        script_test.go:136: 2024-03-25T21:05:16Z
        script_test.go:138: $WORK=/workdir/tmp/cmd-go-test-692193662/tmpdir1607412898/cover_sync_atomic_import147928467
        script_test.go:160: 
            > [short] skip
            [condition not met]
            > [compiler:gccgo] skip # gccgo has no cover tool
            [condition not met]
            > [!GOEXPERIMENT:coverageredesign] skip
            [condition not met]
...
            # sync/atomic itself (see #57445). Just a short test run is needed
            # since we're mainly interested in making sure the test builds and can
            # execute at least one test. (11.208s)
            > go test -short -covermode=atomic -run=TestStoreInt64 sync/atomic
            [stdout]
            ok  	sync/atomic	0.034s	coverage: 28.6% of statements
            > go test -short -covermode=atomic -run=TestAnd8 runtime/internal/atomic
            [stderr]
            package runtime/internal/atomic is not in std (/workdir/go/src/runtime/internal/atomic)
        script_test.go:160: FAIL: testdata/script/cover_sync_atomic_import.txt:14: go test -short -covermode=atomic -run=TestAnd8 runtime/internal/atomic: 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-25 21:01 darwin-amd64-longtest go@e7bdc881 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:50074
https://vcs-test.golang.org rerouted to https://127.0.0.1:50075
go test proxy running at GOPROXY=http://127.0.0.1:50076/mod
2024/03/25 18:23:24 http: TLS handshake error from 127.0.0.1:51726: read tcp 127.0.0.1:50075->127.0.0.1:51726: read: connection reset by peer
--- FAIL: TestScript (0.85s)
    --- FAIL: TestScript/cover_sync_atomic_import (34.97s)
        script_test.go:136: 2024-03-25T22:26:32Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-2442378649/tmpdir1794799054/cover_sync_atomic_import137589321
        script_test.go:160: 
            > [short] skip
...
    --- FAIL: TestScript/build_runtime_gcflags (14.18s)
        script_test.go:136: 2024-03-25T22:31:23Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-2442378649/tmpdir1794799054/build_runtime_gcflags3231781514
        script_test.go:160: 
            > env GO111MODULE=off
            > [short] skip # rebuilds all of std
            [condition not met]
            # Set up fresh GOCACHE. (0.000s)
            # Verify the standard library (specifically runtime/internal/atomic) can be
            # built with -gcflags when -n is given. See golang.org/issue/29346. (12.808s)
...
            packagefile strings=$WORK/b052/_pkg_.a
            packagefile sync=$WORK/b021/_pkg_.a
            packagefile syscall=$WORK/b039/_pkg_.a
            packagefile testing=$WORK/b236/_pkg_.a
            packagefile time=$WORK/b043/_pkg_.a
            EOF
            /tmp/buildlet/go/pkg/tool/darwin_amd64/compile -o $WORK/b291/_pkg_.a -trimpath "$WORK/b291=>" -p vendor/golang.org/x/net/nettest -std -complete -buildid Ds3abpxveh6OGsUIUtdo/Ds3abpxveh6OGsUIUtdo -c=4 -shared -l -nolocalimports -importcfg $WORK/b291/importcfg -pack /tmp/buildlet/go/src/vendor/golang.org/x/net/nettest/conntest.go /tmp/buildlet/go/src/vendor/golang.org/x/net/nettest/nettest.go /tmp/buildlet/go/src/vendor/golang.org/x/net/nettest/nettest_unix.go
            /tmp/buildlet/go/pkg/tool/darwin_amd64/buildid -w $WORK/b291/_pkg_.a # internal
            > stderr 'compile.* runtime/internal/atomic .* -l'
        script_test.go:160: FAIL: testdata/script/build_runtime_gcflags.txt:11: stderr 'compile.* runtime/internal/atomic .* -l': no match for `(?m)compile.* runtime/internal/atomic .* -l` 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-26 21:33 darwin-amd64-nocgo go@b47f2feb cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:55228
https://vcs-test.golang.org rerouted to https://127.0.0.1:55229
go test proxy running at GOPROXY=http://127.0.0.1:55230/mod
2024/03/26 15:09:12 http: TLS handshake error from 127.0.0.1:56020: read tcp 127.0.0.1:55229->127.0.0.1:56020: read: connection reset by peer
2024/03/26 15:09:12 http: TLS handshake error from 127.0.0.1:56022: EOF
2024/03/26 15:09:12 http: TLS handshake error from 127.0.0.1:56021: EOF
--- FAIL: TestScript (0.56s)
    --- FAIL: TestScript/goline_order (0.89s)
        script_test.go:136: 2024-03-26T22:11:12Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-1798684122/tmpdir2735627967/goline_order3679948296
        script_test.go:160: 
            # Check that go lines are always >= go lines of dependencies.
            # Using too old a release cannot even complete module load. (0.145s)
            # If the offending module is not imported, it's not detected. (0.280s)
            # Adding the import produces the error.
            # Maybe this should auto-switch, but it requires more plumbing to get this error through,
            # and it's a misconfigured system that should not arise in practice, so not switching is fine. (0.109s)
            # go get go@1.21.2 fixes the error. (0.222s)
            > cp go.mod.orig go.mod
            > go get go@1.21.2
            [stderr]
            go: module ./m1 requires go >= 1.21.2; switching to go1.22.9
        script_test.go:160: FAIL: testdata/script/goline_order.txt:21: go get go@1.21.2: signal: illegal instruction

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-15 15:59 linux-arm64-longtest mod@aa51b25a go@979b34b3 x/mod/zip.TestVCS (log)
--- FAIL: TestVCS (0.00s)
    --- FAIL: TestVCS/golang.org_x_blog@v0.0.0-20191017104857-0cd0cdff05c2 (2.55s)
        zip_test.go:1328: /usr/bin/git init --bare
        zip_test.go:1345: /usr/bin/git remote add origin -- https://go.googlesource.com/blog
        zip_test.go:1354: exit status 128: /usr/bin/git fetch -f --depth=1 origin 0cd0cdff05c251ad0c796cc94d7059e013311fc6:refs/dummy
            17:59:41.705624 http.c:756              == Info: Couldn't find host go.googlesource.com in the .netrc file; using defaults
            17:59:41.709876 http.c:756              == Info:   Trying 142.251.180.82:443...
            17:59:41.710325 http.c:756              == Info: Connected to go.googlesource.com (142.251.180.82) port 443 (#0)
            17:59:41.743020 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            17:59:41.743085 http.c:756              == Info: ALPN, offering h2
...
            17:59:44.072752 http.c:756              == Info: Failed receiving HTTP2 data
            i�
            17:59:44.072760 http.c:756              == Info: Failed sending HTTP2 data
            17:59:44.072767 http.c:756              == Info: Connection #0 to host go.googlesource.com left intact
            error: RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function.
            error: 12580 bytes of body are still expected
            fetch-pack: unexpected disconnect while reading sideband packet
            fatal: early EOF
            fatal: index-pack failed
        zip_test.go:1223: failed to download zip from repository (repeated failure): exit status 128

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-27 21:58 darwin-amd64-race go@2e1003e2 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:55147
https://vcs-test.golang.org rerouted to https://127.0.0.1:55148
go test proxy running at GOPROXY=http://127.0.0.1:55149/mod
2024/03/27 17:25:07 http: TLS handshake error from 127.0.0.1:55708: read tcp 127.0.0.1:55148->127.0.0.1:55708: read: connection reset by peer
2024/03/27 17:25:07 http: TLS handshake error from 127.0.0.1:55711: EOF
2024/03/27 17:25:07 http: TLS handshake error from 127.0.0.1:55709: read tcp 127.0.0.1:55148->127.0.0.1:55709: read: connection reset by peer
--- FAIL: TestScript (1.37s)
    --- FAIL: TestScript/gotoolchain_loop (7.14s)
        script_test.go:136: 2024-03-28T00:28:46Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-3050038191/tmpdir2583567063/gotoolchain_loop98293826
        script_test.go:160: 
            > env GOTOOLCHAIN=auto
            > env TESTGO_VERSION=go1.21.1
            # Basic switch should work. (1.362s)
            # Toolchain target mismatch should be detected. (0.305s)
            # Toolchain loop should be detected. (5.411s)
            > env TESTGO_VERSION_SWITCH=loop
            > ! go version
            [signal: illegal instruction]
            > stderr -count=10 '^go: switching from go1.21.1 to go1.21.99 \[depth 9[0-9]\]$'
        script_test.go:160: FAIL: testdata/script/gotoolchain_loop.txt:17: stderr -count=10 '^go: switching from go1.21.1 to go1.21.99 \[depth 9[0-9]\]$': found 0 matches for `(?m)^go: switching from go1.21.1 to go1.21.99 \[depth 9[0-9]\]$` 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-28 21:32 darwin-amd64-longtest go@3f90ba7f cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:50561
https://vcs-test.golang.org rerouted to https://127.0.0.1:50562
go test proxy running at GOPROXY=http://127.0.0.1:50563/mod
2024/03/28 18:49:44 http: TLS handshake error from 127.0.0.1:51821: read tcp 127.0.0.1:50562->127.0.0.1:51821: read: connection reset by peer
2024/03/28 18:49:44 http: TLS handshake error from 127.0.0.1:51822: read tcp 127.0.0.1:50562->127.0.0.1:51822: read: connection reset by peer
2024/03/28 18:49:44 http: TLS handshake error from 127.0.0.1:51819: EOF
--- FAIL: TestScript (0.76s)
    --- FAIL: TestScript/gotoolchain_loop (8.53s)
        script_test.go:136: 2024-03-28T22:52:44Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-1211634446/tmpdir2345568503/gotoolchain_loop3205631825
        script_test.go:160: 
            > env GOTOOLCHAIN=auto
            > env TESTGO_VERSION=go1.21.1
            # Basic switch should work. (0.411s)
            # Toolchain target mismatch should be detected. (0.217s)
            # Toolchain loop should be detected. (7.803s)
            > env TESTGO_VERSION_SWITCH=loop
            > ! go version
            [signal: illegal instruction]
            > stderr -count=10 '^go: switching from go1.21.1 to go1.21.99 \[depth 9[0-9]\]$'
        script_test.go:160: FAIL: testdata/script/gotoolchain_loop.txt:17: stderr -count=10 '^go: switching from go1.21.1 to go1.21.99 \[depth 9[0-9]\]$': found 0 matches for `(?m)^go: switching from go1.21.1 to go1.21.99 \[depth 9[0-9]\]$` 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-01 17:19 darwin-arm64-12 go@a4995244 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:52378
https://vcs-test.golang.org rerouted to https://127.0.0.1:52379
go test proxy running at GOPROXY=http://127.0.0.1:52380/mod
2024/04/01 13:27:05 http: TLS handshake error from 127.0.0.1:53272: EOF
2024/04/01 13:27:05 http: TLS handshake error from 127.0.0.1:53273: read tcp 127.0.0.1:52379->127.0.0.1:53273: read: connection reset by peer
--- FAIL: TestScript (0.24s)
    --- FAIL: TestScript/mod_download_exec_toolchain (0.24s)
        script_test.go:136: 2024-04-01T17:27:05Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-442850283/tmpdir4183590926/mod_download_exec_toolchain577504249
        script_test.go:160: 
            > env TESTGO_VERSION=go1.21
            > env TESTGO_VERSION_SWITCH=switch
            # First, test 'go mod download' outside of a module.
            #
            # There is no go.mod file into which we can record the selected toolchain,
            # so unfortunately these version switches won't be as reproducible as other
            # go commands, but that's still preferable to failing entirely or downloading
            # a module zip that we don't understand.
            # GOTOOLCHAIN=auto should run the newer toolchain (0.125s)
            # GOTOOLCHAIN=min+auto should run the newer toolchain (0.055s)
            # GOTOOLCHAIN=go1.21 should NOT run the newer toolchain (0.022s)
            # JSON output should be emitted exactly once,
            # and non-JSON output should go to stderr instead of stdout. (0.025s)
            > env GOTOOLCHAIN=auto
            > go mod download -json rsc.io/needgo121@latest rsc.io/needgo122@latest rsc.io/needgo123@latest rsc.io/needall@latest
            [stderr]
            go: rsc.io/needall@v0.0.1 requires go >= 1.23; switching to go1.23.9
        script_test.go:160: FAIL: testdata/script/mod_download_exec_toolchain.txt:37: go mod download -json rsc.io/needgo121@latest rsc.io/needgo122@latest rsc.io/needgo123@latest rsc.io/needall@latest: signal: illegal instruction

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-03 21:36 darwin-amd64-longtest go@885fdfc0 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:50099
https://vcs-test.golang.org rerouted to https://127.0.0.1:50100
go test proxy running at GOPROXY=http://127.0.0.1:50101/mod
2024/04/03 18:48:15 http: TLS handshake error from 127.0.0.1:51089: EOF
2024/04/03 18:48:15 http: TLS handshake error from 127.0.0.1:51092: read tcp 127.0.0.1:50100->127.0.0.1:51092: read: connection reset by peer
--- FAIL: TestScript (0.70s)
    --- FAIL: TestScript/work_use_toolchain (2.56s)
        script_test.go:136: 2024-04-03T22:52:21Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-3985155678/tmpdir1827076922/work_use_toolchain2727918633
        script_test.go:160: 
            # Create basic modules and work space. (0.959s)
            # work use with older modules should leave go 1.50 in the go.work. (0.177s)
            # work use with newer modules should bump go and toolchain,
            # including updating to a newer toolchain as needed. (0.416s)
            # work use with an even newer module should bump go again. (0.310s)
            # work use with an even newer module should bump go and toolchain again. (0.674s)
            > env GOTOOLCHAIN=go1.22.9
            > ! go work use ./m1_24_rc0
            [stderr]
            go: m1_24_rc0/go.mod requires go >= 1.24rc0 (running go 1.22.9; GOTOOLCHAIN=go1.22.9)
            [exit status 1]
            > stderr '^go: m1_24_rc0'${/}'go.mod requires go >= 1.24rc0 \(running go 1.22.9; GOTOOLCHAIN=go1.22.9\)$'
            matched: go: m1_24_rc0/go.mod requires go >= 1.24rc0 (running go 1.22.9; GOTOOLCHAIN=go1.22.9)
            > env GOTOOLCHAIN=auto
            > go work use ./m1_24_rc0
            [stderr]
            go: m1_24_rc0/go.mod requires go >= 1.24rc0; switching to go1.24rc1
        script_test.go:160: FAIL: testdata/script/work_use_toolchain.txt:48: go work use ./m1_24_rc0: signal: illegal instruction

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-04 22:54 darwin-amd64-11_0 go@99b65ae9 cmd/go (log)
vcs-test.golang.org rerouted to http://127.0.0.1:54145
https://vcs-test.golang.org rerouted to https://127.0.0.1:54146
go test proxy running at GOPROXY=http://127.0.0.1:54147/mod
2024/04/04 23:50:08 http: TLS handshake error from 127.0.0.1:54960: read tcp 127.0.0.1:54146->127.0.0.1:54960: read: connection reset by peer
2024/04/04 23:50:08 http: TLS handshake error from 127.0.0.1:54962: EOF
fatal error: unexpected signal during runtime execution
[signal SIGSEGV: segmentation violation code=0x1 addr=0xb01dfacedebac1e pc=0xd438e66]

goroutine 3 gp=0xc000006c40 m=13 mp=0xc0004e8408 [running]:
runtime.throw({0xdb123ae?, 0xc000063720?})
...
os/exec.(*Cmd).writerDescriptor.func1()
	/tmp/buildlet/go/src/os/exec/exec.go:577 +0x34 fp=0xc0002bcf60 sp=0xc0002bcf00 pc=0xd5adbd4
os/exec.(*Cmd).Start.func2(0xc0000355e0?)
	/tmp/buildlet/go/src/os/exec/exec.go:724 +0x2c fp=0xc0002bcfc8 sp=0xc0002bcf60 pc=0xd5ae86c
os/exec.(*Cmd).Start.gowrap1()
	/tmp/buildlet/go/src/os/exec/exec.go:736 +0x24 fp=0xc0002bcfe0 sp=0xc0002bcfc8 pc=0xd5ae804
runtime.goexit({})
	/tmp/buildlet/go/src/runtime/asm_amd64.s:1695 +0x1 fp=0xc0002bcfe8 sp=0xc0002bcfe0 pc=0xd4a17c1
created by os/exec.(*Cmd).Start in goroutine 903
	/tmp/buildlet/go/src/os/exec/exec.go:723 +0x9ab

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-15 15:59 linux-arm64-longtest mod@aa51b25a go@ddc6e165 x/mod/zip.TestVCS (log)
--- FAIL: TestVCS (0.00s)
    --- FAIL: TestVCS/rsc.io_quote@v1.5.3-pre1 (5.25s)
        zip_test.go:1328: /usr/bin/git init --bare
        zip_test.go:1345: /usr/bin/git remote add origin -- https://github.com/rsc/quote
        zip_test.go:1354: exit status 128: /usr/bin/git fetch -f --depth=1 origin refs/tags/v1.5.3-pre1:refs/tags/v1.5.3-pre1
            15:15:14.851407 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            15:15:14.853471 http.c:756              == Info:   Trying 140.82.112.3:443...
            15:15:14.877653 http.c:756              == Info: Connected to github.com (140.82.112.3) port 443 (#0)
            15:15:14.911416 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            15:15:14.911494 http.c:756              == Info: ALPN, offering h2
...
            15:15:14.940851 http.c:715              => Send header: accept: */*
            15:15:14.940853 http.c:715              => Send header: accept-encoding: deflate, gzip, br
            15:15:14.940855 http.c:715              => Send header: pragma: no-cache
            15:15:14.940857 http.c:715              => Send header: git-protocol: version=2
            15:15:14.940858 http.c:715              => Send header:
            15:15:19.962562 http.c:756              == Info: Empty reply from server
            �zh���
            15:15:19.962597 http.c:756              == Info: Connection #0 to host github.com left intact
            fatal: unable to access 'https://github.com/rsc/quote/': Empty reply from server
        zip_test.go:1223: failed to download zip from repository (repeated failure): exit status 128

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-10 19:41 linux-arm64-longtest go@5b5d6f87 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44089
https://vcs-test.golang.org rerouted to https://127.0.0.1:45717
go test proxy running at GOPROXY=http://127.0.0.1:37125/mod
2024/04/10 20:05:40 http: TLS handshake error from 127.0.0.1:51802: read tcp 127.0.0.1:45717->127.0.0.1:51802: read: connection reset by peer
2024/04/10 20:05:40 http: TLS handshake error from 127.0.0.1:51796: read tcp 127.0.0.1:45717->127.0.0.1:51796: read: connection reset by peer
2024/04/10 20:05:40 http: TLS handshake error from 127.0.0.1:51800: read tcp 127.0.0.1:45717->127.0.0.1:51800: read: connection reset by peer
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_get_pseudo (22.96s)
        script_test.go:136: 2024-04-10T20:05:36Z
        script_test.go:138: $WORK=/tmp/workdir/tmp/cmd-go-test-1893926595/tmpdir678896585/mod_get_pseudo1828026196
...
    --- FAIL: TestScript/mod_invalid_version (25.66s)
        script_test.go:136: 2024-04-10T20:05:34Z
        script_test.go:138: $WORK=/tmp/workdir/tmp/cmd-go-test-1893926595/tmpdir678896585/mod_invalid_version1371317204
        script_test.go:160: 
            > [!net:golang.org] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GO111MODULE=on
            > env GOPROXY=direct
...
            	20:05:49.070488 http.c:756              == Info:   Trying 140.82.112.4:443...
            	20:05:49.095223 http.c:756              == Info: Connected to github.com (140.82.112.4) port 443 (#0)
            	20:05:49.150232 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            	20:05:49.150311 http.c:756              == Info: ALPN, offering h2
            	20:05:49.150320 http.c:756              == Info: ALPN, offering http/1.1
            	20:06:00.147075 http.c:756              == Info: gnutls_handshake() failed: The TLS connection was non-properly terminated.
            	]k�
            	20:06:00.147100 http.c:756              == Info: Closing connection 0
            	fatal: unable to access 'https://github.com/rsc/sampler/': gnutls_handshake() failed: The TLS connection was non-properly terminated.
        script_test.go:160: FAIL: testdata/script/mod_sumdb_golang.txt:71: go list -mod=mod -x -m all: 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-11 17:09 linux-arm64-longtest go@890179d9 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:38925
https://vcs-test.golang.org rerouted to https://127.0.0.1:39189
go test proxy running at GOPROXY=http://127.0.0.1:42881/mod
2024/04/11 17:32:27 http: TLS handshake error from 127.0.0.1:57716: read tcp 127.0.0.1:39189->127.0.0.1:57716: read: connection reset by peer
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_get_direct (6.55s)
        script_test.go:136: 2024-04-11T17:32:23Z
        script_test.go:138: $WORK=/tmp/workdir/tmp/cmd-go-test-1226179993/tmpdir2737374725/mod_get_direct1307838989
        script_test.go:160: 
            # Regression test for golang.org/issue/34092: with an empty module cache,
...
    --- FAIL: TestScript/mod_sumdb_golang (11.75s)
        script_test.go:136: 2024-04-11T17:32:21Z
        script_test.go:138: $WORK=/tmp/workdir/tmp/cmd-go-test-1226179993/tmpdir2737374725/mod_sumdb_golang2768280506
        script_test.go:160: 
            # Test default GOPROXY and GOSUMDB (0.033s)
            # Download direct from github. (11.714s)
            > [!net:proxy.golang.org] skip
            [condition not met]
            > [!net:sum.golang.org] skip
            [condition not met]
...
            	17:32:33.586925 http.c:756              == Info:   Trying 140.82.114.4:443...
            	17:32:33.611282 http.c:756              == Info: Connected to github.com (140.82.114.4) port 443 (#0)
            	17:32:33.656078 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            	17:32:33.656167 http.c:756              == Info: ALPN, offering h2
            	17:32:33.656173 http.c:756              == Info: ALPN, offering http/1.1
            	17:32:44.642816 http.c:756              == Info: gnutls_handshake() failed: The TLS connection was non-properly terminated.
            	�]�
            	17:32:44.642849 http.c:756              == Info: Closing connection 0
            	fatal: unable to access 'https://github.com/rsc/sampler/': gnutls_handshake() failed: The TLS connection was non-properly terminated.
        script_test.go:160: FAIL: testdata/script/govcs.txt:70: go get rsc.io/sampler: 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-11 22:45 linux-arm64-longtest go@e14aad1f cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:37255
https://vcs-test.golang.org rerouted to https://127.0.0.1:39113
go test proxy running at GOPROXY=http://127.0.0.1:37473/mod
2024/04/11 23:09:20 http: TLS handshake error from 127.0.0.1:59148: read tcp 127.0.0.1:39113->127.0.0.1:59148: read: connection reset by peer
2024/04/11 23:09:20 http: TLS handshake error from 127.0.0.1:59138: EOF
2024/04/11 23:09:20 http: TLS handshake error from 127.0.0.1:59174: EOF
2024/04/11 23:09:31 http: TLS handshake error from 127.0.0.1:39674: read tcp 127.0.0.1:39113->127.0.0.1:39674: read: connection reset by peer
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/get_404_meta (0.14s)
        script_test.go:136: 2024-04-11T23:09:29Z
...
    --- FAIL: TestScript/mod_download_private_vcs (5.39s)
        script_test.go:136: 2024-04-11T23:09:28Z
        script_test.go:138: $WORK=/tmp/workdir/tmp/cmd-go-test-4261290786/tmpdir721933563/mod_download_private_vcs1160645461
        script_test.go:160: 
            > env GO111MODULE=on
            # Testing stderr for git ls-remote; turn off proxy. (0.000s)
            # Redirect git to a test-specific .gitconfig.
            # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
            # For older git versions we also set $HOME. (5.388s)
            > env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
...
            	23:10:33.136249 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            	23:10:33.136250 http.c:715              <= Recv header: x-xss-protection: 0
            	23:10:33.136252 http.c:703              <= Recv header, 0000000072 bytes (0x00000048)
            	23:10:33.136254 http.c:715              <= Recv header: content-security-policy: default-src 'none'; style-src 'unsafe-inline'
            	23:10:33.136257 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	23:10:33.136259 http.c:715              <= Recv header:
            	23:10:33.136281 http.c:756              == Info: Connection #0 to host github.com left intact
            	error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400
            	fatal: error reading section header 'shallow-info'
        script_test.go:160: FAIL: testdata/script/mod_get_direct.txt:12: go list -m cloud.google.com/go@main: 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-15 15:59 linux-arm64-longtest mod@aa51b25a go@b107d95b x/mod/zip.TestVCS (log)
--- FAIL: TestVCS (0.00s)
    --- FAIL: TestVCS/rsc.io_quote@v1.1.0 (10.18s)
        zip_test.go:1328: /usr/bin/git init --bare
        zip_test.go:1345: /usr/bin/git remote add origin -- https://github.com/rsc/quote
        zip_test.go:1354: exit status 128: /usr/bin/git fetch -f --depth=1 origin refs/tags/v1.1.0:refs/tags/v1.1.0
            17:50:11.400874 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            17:50:11.402548 http.c:756              == Info:   Trying 140.82.112.4:443...
            17:50:11.428043 http.c:756              == Info: Connected to github.com (140.82.112.4) port 443 (#0)
            17:50:11.460243 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            17:50:11.460314 http.c:756              == Info: ALPN, offering h2
...
    --- FAIL: TestVCS/rsc.io_quote@v1.5.3-pre1 (11.20s)
        zip_test.go:1328: /usr/bin/git init --bare
        zip_test.go:1345: /usr/bin/git remote add origin -- https://github.com/rsc/quote
        zip_test.go:1354: exit status 128: /usr/bin/git fetch -f --depth=1 origin refs/tags/v1.5.3-pre1:refs/tags/v1.5.3-pre1
            17:50:11.100318 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            17:50:11.101843 http.c:756              == Info:   Trying 140.82.113.4:443...
            17:50:11.132978 http.c:756              == Info: Connected to github.com (140.82.113.4) port 443 (#0)
            17:50:11.167210 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            17:50:11.167289 http.c:756              == Info: ALPN, offering h2
            17:50:11.167293 http.c:756              == Info: ALPN, offering http/1.1
            17:50:22.174129 http.c:756              == Info: gnutls_handshake() failed: The TLS connection was non-properly terminated.
            *��
            17:50:22.174163 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'https://github.com/rsc/quote/': gnutls_handshake() failed: The TLS connection was non-properly terminated.
        zip_test.go:1223: failed to download zip from repository (repeated failure): exit status 128

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-15 17:44 darwin-amd64-13 go@b107d95b cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:53026
https://vcs-test.golang.org rerouted to https://127.0.0.1:53027
go test proxy running at GOPROXY=http://127.0.0.1:53028/mod
2024/04/15 14:27:34 http: TLS handshake error from 127.0.0.1:53814: read tcp 127.0.0.1:53027->127.0.0.1:53814: read: connection reset by peer
--- FAIL: TestScript (0.74s)
    --- FAIL: TestScript/gotoolchain_local (8.81s)
        script_test.go:136: 2024-04-15T18:28:19Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-1888273493/tmpdir1927689527/gotoolchain_local2075944486
        script_test.go:160: 
            # This test uses the fake toolchain switch support in cmd/go/internal/toolchain.Switch
...
            > go mod edit -go=1.300 -toolchain=default
            > go version
            [stdout]
            go version go1.400 (TESTGO_VERSION) darwin/amd64
            > stdout 1.400 # not 1.500 local toolchain
            matched: go version go1.400 (TESTGO_VERSION) darwin/amd64
            > env GOTOOLCHAIN=go1.600+auto
            > go mod edit -go=1.300 -toolchain=default
            > go version
        script_test.go:160: FAIL: testdata/script/gotoolchain_local.txt:110: go version: signal: illegal instruction

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-15 15:59 linux-arm64-longtest mod@aa51b25a go@330bc950 x/mod/zip.TestVCS (log)
--- FAIL: TestVCS (0.00s)
    --- FAIL: TestVCS/rsc.io_quote@v1.1.0 (11.13s)
        zip_test.go:1328: /usr/bin/git init --bare
        zip_test.go:1345: /usr/bin/git remote add origin -- https://github.com/rsc/quote
        zip_test.go:1354: exit status 128: /usr/bin/git fetch -f --depth=1 origin refs/tags/v1.1.0:refs/tags/v1.1.0
            18:08:50.804945 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            18:08:50.806641 http.c:756              == Info:   Trying 140.82.113.3:443...
            18:08:50.830802 http.c:756              == Info: Connected to github.com (140.82.113.3) port 443 (#0)
            18:08:50.861735 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            18:08:50.861806 http.c:756              == Info: ALPN, offering h2
            18:08:50.861815 http.c:756              == Info: ALPN, offering http/1.1
            18:09:01.858164 http.c:756              == Info: gnutls_handshake() failed: The TLS connection was non-properly terminated.
            `]�
            18:09:01.858216 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'https://github.com/rsc/quote/': gnutls_handshake() failed: The TLS connection was non-properly terminated.
        zip_test.go:1223: failed to download zip from repository (repeated failure): exit status 128

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-18 19:36 darwin-amd64-longtest go@3c78ace2 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:49802
https://vcs-test.golang.org rerouted to https://127.0.0.1:49803
go test proxy running at GOPROXY=http://127.0.0.1:49804/mod
2024/03/18 17:10:04 http: TLS handshake error from 127.0.0.1:50705: read tcp 127.0.0.1:49803->127.0.0.1:50705: read: connection reset by peer
--- FAIL: TestScript (0.75s)
    --- FAIL: TestScript/mod_vendor_goversion (0.53s)
        script_test.go:136: 2024-03-18T21:11:23Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-550403493/tmpdir2531637912/mod_vendor_goversion614519783
        script_test.go:160: 
            # https://golang.org/issue/36876: As of Go 1.17, vendor/modules.txt should
            # indicate the language version used by each dependency. (0.000s)
            # Control case: without a vendor directory, need117 builds and bad114 doesn't. (0.512s)
            > go build example.net/need117
            > ! go build example.net/bad114
            [stderr]
            # example.net/bad114
            bad114/bad114.go:15:2: duplicate method `Y'
            	bad114/bad114.go:14:2: other declaration of `Y'
            [exit status 1]
            > stderr '^bad114[/\\]bad114.go:15:2: duplicate method Y( .*)?$'
        script_test.go:160: FAIL: testdata/script/mod_vendor_goversion.txt:10: stderr '^bad114[/\\]bad114.go:15:2: duplicate method Y( .*)?$': no match for `(?m)^bad114[/\\]bad114.go:15:2: duplicate method Y( .*)?$` 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-15 15:59 linux-arm64-longtest mod@aa51b25a go@2b82a4f4 x/mod/zip.TestVCS (log)
--- FAIL: TestVCS (0.00s)
    --- FAIL: TestVCS/rsc.io_quote_v2@v2.0.1 (11.22s)
        zip_test.go:1328: /usr/bin/git init --bare
        zip_test.go:1345: /usr/bin/git remote add origin -- https://github.com/rsc/quote
        zip_test.go:1354: exit status 128: /usr/bin/git fetch -f --depth=1 origin refs/tags/v2.0.1:refs/tags/v2.0.1
            17:35:04.569923 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            17:35:04.573776 http.c:756              == Info:   Trying 140.82.112.4:443...
            17:35:04.597953 http.c:756              == Info: Connected to github.com (140.82.112.4) port 443 (#0)
            17:35:04.629464 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            17:35:04.629558 http.c:756              == Info: ALPN, offering h2
            17:35:04.629566 http.c:756              == Info: ALPN, offering http/1.1
            17:35:15.656638 http.c:756              == Info: gnutls_handshake() failed: The TLS connection was non-properly terminated.
            �d�
            17:35:15.656678 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'https://github.com/rsc/quote/': gnutls_handshake() failed: The TLS connection was non-properly terminated.
        zip_test.go:1223: failed to download zip from repository (repeated failure): exit status 128
2024-04-19 16:08 linux-arm64-longtest go@d428a638 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:43417
https://vcs-test.golang.org rerouted to https://127.0.0.1:38587
go test proxy running at GOPROXY=http://127.0.0.1:33301/mod
2024/04/19 17:10:48 http: TLS handshake error from 127.0.0.1:38882: read tcp 127.0.0.1:38587->127.0.0.1:38882: read: connection reset by peer
2024/04/19 17:10:59 http: TLS handshake error from 127.0.0.1:60394: EOF
2024/04/19 17:10:59 http: TLS handshake error from 127.0.0.1:60410: EOF
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_download_hash (5.39s)
        script_test.go:136: 2024-04-19T17:10:58Z
        script_test.go:138: $WORK=/tmp/workdir/tmp/cmd-go-test-53170155/tmpdir2865499495/mod_download_hash1058708403
...
    --- FAIL: TestScript/mod_get_pseudo (19.13s)
        script_test.go:136: 2024-04-19T17:10:54Z
        script_test.go:138: $WORK=/tmp/workdir/tmp/cmd-go-test-53170155/tmpdir2865499495/mod_get_pseudo3994115030
        script_test.go:160: 
            > 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.) (13.091s)
            # get should include incompatible tags in "latest" calculation. (0.305s)
...
            	17:12:04.184585 http.c:756              == Info:   Trying 140.82.114.4:443...
            	17:12:04.208859 http.c:756              == Info: Connected to github.com (140.82.114.4) port 443 (#0)
            	17:12:04.294814 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            	17:12:04.343519 http.c:756              == Info: ALPN, offering h2
            	17:12:04.343674 http.c:756              == Info: ALPN, offering http/1.1
            	17:12:15.240721 http.c:756              == Info: gnutls_handshake() failed: The TLS connection was non-properly terminated.
            	5N�
            	17:12:15.240748 http.c:756              == Info: Closing connection 0
            	fatal: unable to access 'https://github.com/rsc/legacytest/': gnutls_handshake() failed: The TLS connection was non-properly terminated.
        script_test.go:160: FAIL: testdata/script/mod_prefer_compatible.txt:76: go list -m github.com/rsc/legacytest@7303f7796364: 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-19 16:55 darwin-amd64-longtest go@f0d6ddfa cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:51775
https://vcs-test.golang.org rerouted to https://127.0.0.1:51776
go test proxy running at GOPROXY=http://127.0.0.1:51777/mod
2024/04/19 22:17:39 http: TLS handshake error from 127.0.0.1:52642: read tcp 127.0.0.1:51776->127.0.0.1:52642: read: connection reset by peer
2024/04/19 22:17:39 http: TLS handshake error from 127.0.0.1:52645: read tcp 127.0.0.1:51776->127.0.0.1:52645: read: connection reset by peer
--- FAIL: TestScript (0.68s)
    --- FAIL: TestScript/goline_order (1.63s)
        script_test.go:136: 2024-04-20T02:19:58Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-2717497062/tmpdir2614646124/goline_order925824287
        script_test.go:160: 
            # Check that go lines are always >= go lines of dependencies.
            # Using too old a release cannot even complete module load. (0.001s)
            # If the offending module is not imported, it's not detected. (0.140s)
            # Adding the import produces the error.
            # Maybe this should auto-switch, but it requires more plumbing to get this error through,
            # and it's a misconfigured system that should not arise in practice, so not switching is fine. (0.083s)
            # go get go@1.21.2 fixes the error. (0.573s)
            # go get -tags usem1 fixes the error. (0.629s)
            # go get fixes the error. (0.166s)
            > cp go.mod.orig go.mod
            > go get
            [stderr]
            go: module ./m1 requires go >= 1.21.2; switching to go1.22.9
        script_test.go:160: FAIL: testdata/script/goline_order.txt:31: go get: signal: illegal instruction

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-22 15:29 linux-amd64-longtest go@734fd7a9 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:44879
https://vcs-test.golang.org rerouted to https://127.0.0.1:41365
go test proxy running at GOPROXY=http://127.0.0.1:40735/mod
2024/04/22 16:02:53 http: TLS handshake error from 127.0.0.1:58274: read tcp 127.0.0.1:41365->127.0.0.1:58274: read: connection reset by peer
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_download_hash (11.77s)
        script_test.go:136: 2024-04-22T16:02:56Z
        script_test.go:138: $WORK=/workdir/tmp/cmd-go-test-3965951896/tmpdir277771288/mod_download_hash1287333040
        script_test.go:160: 
            > env GO111MODULE=on
            # Testing mod download with non semantic versions; turn off proxy. (11.764s)
            > [!net:rsc.io] skip
            [condition not met]
            > [!git] skip
            [condition not met]
            > env GOPROXY=direct
            > env GOSUMDB=off
            > go mod download rsc.io/quote@a91498bed0a73d4bb9c1fb2597925f7883bc40a7
            > exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-0.20180709162918-a91498bed0a7.info
            > exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-0.20180709162918-a91498bed0a7.mod
            > exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-0.20180709162918-a91498bed0a7.zip
            > go mod download rsc.io/quote@master
            [stderr]
            go: rsc.io/quote@master: unrecognized import path "rsc.io/quote": reading https://rsc.io/quote?go-get=1: 500 Internal Server Error
        script_test.go:160: FAIL: testdata/script/mod_download_hash.txt:14: go mod download rsc.io/quote@master: 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-15 15:59 linux-386-longtest mod@aa51b25a go@654c3368 x/mod/zip.TestVCS (log)
--- FAIL: TestVCS (0.00s)
    --- FAIL: TestVCS/rsc.io_quote@v1.1.0 (129.19s)
        zip_test.go:1328: /usr/bin/git init --bare
        zip_test.go:1345: /usr/bin/git remote add origin -- https://github.com/rsc/quote
        zip_test.go:1354: exit status 128: /usr/bin/git fetch -f --depth=1 origin refs/tags/v1.1.0:refs/tags/v1.1.0
            18:06:36.736344 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            18:06:36.738301 http.c:756              == Info:   Trying 140.82.114.3:443...
            18:08:45.892728 http.c:756              == Info: connect to 140.82.114.3 port 443 failed: Connection timed out
            18:08:45.892792 http.c:756              == Info: Failed to connect to github.com port 443: Connection timed out
            18:08:45.892806 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 timed out
        zip_test.go:1223: failed to download zip from repository (repeated failure): exit status 128

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-22 20:48 darwin-amd64-longtest go@aa63ef4b cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:51490
https://vcs-test.golang.org rerouted to https://127.0.0.1:51491
go test proxy running at GOPROXY=http://127.0.0.1:51492/mod
2024/04/22 18:13:20 http: TLS handshake error from 127.0.0.1:52812: read tcp 127.0.0.1:51491->127.0.0.1:52812: read: connection reset by peer
--- FAIL: TestScript (0.61s)
    --- FAIL: TestScript/work_use_toolchain (2.09s)
        script_test.go:136: 2024-04-22T22:21:53Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-3578010913/tmpdir1317802524/work_use_toolchain1077226970
        script_test.go:160: 
            # Create basic modules and work space. (1.275s)
            # work use with older modules should leave go 1.50 in the go.work. (0.138s)
            # work use with newer modules should bump go and toolchain,
            # including updating to a newer toolchain as needed. (0.635s)
            > env TESTGO_VERSION=go1.21
            > env TESTGO_VERSION_SWITCH=switch
            > rm go.work
            > go work init
            > env GOTOOLCHAIN=local
            > ! go work use ./m1_22_0
            [stderr]
            go: m1_22_0/go.mod requires go >= 1.22.0 (running go 1.21; GOTOOLCHAIN=local)
            [exit status 1]
            > stderr '^go: m1_22_0'${/}'go.mod requires go >= 1.22.0 \(running go 1.21; GOTOOLCHAIN=local\)$'
            matched: go: m1_22_0/go.mod requires go >= 1.22.0 (running go 1.21; GOTOOLCHAIN=local)
            > env GOTOOLCHAIN=auto
            > go work use ./m1_22_0
            [stderr]
            go: m1_22_0/go.mod requires go >= 1.22.0; switching to go1.22.9
        script_test.go:160: FAIL: testdata/script/work_use_toolchain.txt:32: go work use ./m1_22_0: signal: illegal instruction

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-03-15 15:59 linux-arm64-longtest mod@aa51b25a go@0304d035 x/mod/zip.TestVCS (log)
--- FAIL: TestVCS (0.00s)
    --- FAIL: TestVCS/rsc.io_quote@v1.2.1 (11.22s)
        zip_test.go:1328: /usr/bin/git init --bare
        zip_test.go:1345: /usr/bin/git remote add origin -- https://github.com/rsc/quote
        zip_test.go:1354: exit status 128: /usr/bin/git fetch -f --depth=1 origin refs/tags/v1.2.1:refs/tags/v1.2.1
            03:00:09.853909 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            03:00:09.867476 http.c:756              == Info:   Trying 140.82.113.4:443...
            03:00:09.891113 http.c:756              == Info: Connected to github.com (140.82.113.4) port 443 (#0)
            03:00:09.922066 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            03:00:09.922139 http.c:756              == Info: ALPN, offering h2
...
    --- FAIL: TestVCS/rsc.io_quote@v1.3.0 (11.09s)
        zip_test.go:1328: /usr/bin/git init --bare
        zip_test.go:1345: /usr/bin/git remote add origin -- https://github.com/rsc/quote
        zip_test.go:1354: exit status 128: /usr/bin/git fetch -f --depth=1 origin refs/tags/v1.3.0:refs/tags/v1.3.0
            03:00:10.034036 http.c:756              == Info: Couldn't find host github.com in the .netrc file; using defaults
            03:00:10.035800 http.c:756              == Info:   Trying 140.82.113.4:443...
            03:00:10.059782 http.c:756              == Info: Connected to github.com (140.82.113.4) port 443 (#0)
            03:00:10.091251 http.c:756              == Info: found 387 certificates in /etc/ssl/certs
            03:00:10.091327 http.c:756              == Info: ALPN, offering h2
            03:00:10.091336 http.c:756              == Info: ALPN, offering http/1.1
            03:00:21.111070 http.c:756              == Info: gnutls_handshake() failed: The TLS connection was non-properly terminated.
            ���
            03:00:21.111101 http.c:756              == Info: Closing connection 0
            fatal: unable to access 'https://github.com/rsc/quote/': gnutls_handshake() failed: The TLS connection was non-properly terminated.
        zip_test.go:1223: failed to download zip from repository (repeated failure): exit status 128

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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-23 02:53 linux-arm64-longtest go@0304d035 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:39127
https://vcs-test.golang.org rerouted to https://127.0.0.1:38513
go test proxy running at GOPROXY=http://127.0.0.1:43387/mod
2024/04/23 03:17:21 http: TLS handshake error from 127.0.0.1:44454: EOF
2024/04/23 03:17:21 http: TLS handshake error from 127.0.0.1:44466: EOF
2024/04/23 03:17:21 http: TLS handshake error from 127.0.0.1:44430: EOF
--- FAIL: TestScript (0.06s)
    --- FAIL: TestScript/mod_prefer_compatible (10.72s)
        script_test.go:136: 2024-04-23T03:16:53Z
        script_test.go:138: $WORK=/tmp/workdir/tmp/cmd-go-test-1322709208/tmpdir3282002218/mod_prefer_compatible3527930425
...
    --- FAIL: TestScript/mod_download_private_vcs (5.32s)
        script_test.go:136: 2024-04-23T03:17:20Z
        script_test.go:138: $WORK=/tmp/workdir/tmp/cmd-go-test-1322709208/tmpdir3282002218/mod_download_private_vcs1605112230
        script_test.go:160: 
            > env GO111MODULE=on
            # Testing stderr for git ls-remote; turn off proxy. (0.000s)
            # Redirect git to a test-specific .gitconfig.
            # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
            # For older git versions we also set $HOME. (5.322s)
            > env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
...
            	03:18:19.119772 http.c:703              <= Recv header, 0000000021 bytes (0x00000015)
            	03:18:19.119776 http.c:715              <= Recv header: x-xss-protection: 0
            	03:18:19.119780 http.c:703              <= Recv header, 0000000072 bytes (0x00000048)
            	03:18:19.119788 http.c:715              <= Recv header: content-security-policy: default-src 'none'; style-src 'unsafe-inline'
            	03:18:19.119792 http.c:703              <= Recv header, 0000000002 bytes (0x00000002)
            	03:18:19.119798 http.c:715              <= Recv header:
            	03:18:19.119833 http.c:756              == Info: Connection #0 to host github.com left intact
            	error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400
            	fatal: error reading section header 'shallow-info'
        script_test.go:160: FAIL: testdata/script/mod_get_direct.txt:12: go list -m cloud.google.com/go@main: 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 .*: Connection timed out` ||
	`Failed to connect to .* port .*: Operation timed out` ||
	`Empty reply from server` ||
	`Could not resolve host:` ||
	`Failed to connect to .* port 443 .*: Couldn't connect to server` ||
	`read: connection reset by peer`)
2024-04-24 13:36 darwin-amd64-11_0 go@62dfa431 cmd/go.TestScript (log)
vcs-test.golang.org rerouted to http://127.0.0.1:60743
https://vcs-test.golang.org rerouted to https://127.0.0.1:60744
go test proxy running at GOPROXY=http://127.0.0.1:60745/mod
2024/04/24 10:12:12 http: TLS handshake error from 127.0.0.1:61541: read tcp 127.0.0.1:60744->127.0.0.1:61541: read: connection reset by peer
--- FAIL: TestScript (1.02s)
    --- FAIL: TestScript/gotoolchain_net (0.48s)
        script_test.go:136: 2024-04-24T14:12:54Z
        script_test.go:138: $WORK=/tmp/buildlet/tmp/cmd-go-test-2764587413/tmpdir1928774317/gotoolchain_net1217901688
        script_test.go:160: 
            # This test only checks that basic network lookups work.
            # The full test of toolchain version selection is in gotoolchain.txt.
            # This test is sensitive to "new" Go experiments, so
            # update the environment to remove any existing GOEXPERIMENT
            # setting, see #62016 for more on this.  (0.000s)
            # GOTOOLCHAIN from network, does not exist (0.164s)
            # GOTOOLCHAIN from network (0.198s)
            > [!exec:/bin/sh] stop 'the fake proxy serves shell scripts instead of binaries'
            [condition not met]
            > env GOTOOLCHAIN=go1.999testmod
            > go version
            [stderr]
            go: downloading go1.999testmod (darwin/amd64)
        script_test.go:160: FAIL: testdata/script/gotoolchain_net.txt:19: go version: signal: illegal instruction

watchflakes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Projects
Status: Active
Development

No branches or pull requests

5 participants
@rsc @bcmills @gopherbot @seankhliao and others