-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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: tests fail when GOROOT is stale #48698
Comments
This looks to me like a symptom of a stale GOROOT, and it isn't currently showing up on the builders. Does it go away if you re-run |
Aha, I think this may have to do with |
You're right, on a clean Surely the test should be resilient enough against a stale GOROOT? Typically I haven't felt the need to do a I'm not sure if GOAMD64 is related. Maybe? I can't reproduce with the same environment (including GOAMD64) and a clean build :) |
The We probably ought to have |
That's fair. I still think that reasonably running into a failure is still surprising, so I assume this issue is somewhat valid even if not urgent :) |
Rearchitecting the tests to avoid writing to GOROOT even when it is stale would be an awful lot of work, and would probably make the |
Or maybe skip that one check if GOROOT is stale? |
Maybe, but then we would (silently) lose test coverage if things started being stale unexpectedly. |
FWIW, I just ran into this, and the error is very confusing; I spent quite a while looking for what I'd broken before landing on this issue. Perhaps the test failure should explain that GOROOT might be stale? |
Change https://go.dev/cl/448895 mentions this issue: |
If GOROOT is stale, test fail when commands unexpectedly write to GOROOT. Include an message in the test failure indicating that this is a possible and expected reason for the failure, and how to fix it. For #48698. Change-Id: I057c20260bab09aebf684e8f20794ab8fc0ede1e Reviewed-on: https://go-review.googlesource.com/c/go/+/448895 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Bryan Mills <bcmills@google.com> Run-TryBot: Damien Neil <dneil@google.com>
This particular failure mode was fixed by https://go.dev/cl/461689. |
I was running
go test
insidecmd/go
, just like one does, and was surprised to see a failure:There isn't anything special about my GOROOT; it's just built from source.
The text was updated successfully, but these errors were encountered: