-
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: long test fails (TestAccidentalGitCheckout) #24436
Comments
To add another data point, I can reproduce this on tip on linux/amd64.
This is expected because |
This has been failing for quite some time. Git bisect points to 76015 |
ping @rsc |
Doing research regarding Also I could not find environment variable |
Change https://golang.org/cl/103416 mentions this issue: |
Change https://golang.org/cl/103675 mentions this issue: |
Non-main packages do not depend on the "runtime" package, but main packages still do. Use a main package in the test. This change passes the -i flag to the install command to allow installation of updated dependencies, and removes "install std" as unnecessary. https://golang.org/cl/107957 is relevant to fixed test. Updates #24436 Change-Id: If1845f37581a16ad77e72e50be21010e198bc7c5 Reviewed-on: https://go-review.googlesource.com/103675 Reviewed-by: Bryan C. Mills <bcmills@google.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
The most recent run is below. Two first fails should be handled by the CL 103416.
|
Change https://golang.org/cl/112975 mentions this issue: |
Changing GOARCH, GOARM, GO386 leads to a stale dependency. Updates #24436. Change-Id: I5b5b3fca6401be50fa81fb040bc56356de7555de Reviewed-on: https://go-review.googlesource.com/112975 Run-TryBot: Yury Smolsky <yury@smolsky.by> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
The only remaining fix: https://golang.org/cl/103416 ping @ianlancetaylor @rsc |
TestNewReleaseRebuildsStalePackagesInGOPATH still fails on linux-amd64-longtest: I am unable to reproduce this locally on darwin. Any ideas how can I do it?
|
Long test from tip passes on my darwin (El Capitan). It still fails on linux builder:
|
I can reproduce both failures on my Linux laptop - will try to investigate. |
Change https://golang.org/cl/123737 mentions this issue: |
I think I wrapped my mind around what was happening in the first failure - sent the CL above. I'm giving up on the second one for now, as I don't know enough about how |
Change https://golang.org/cl/123815 mentions this issue: |
The test TestNewReleaseRebuildsStalePackagesInGOPATH is not run in short mode, so people tend to not notice when it fails. It was failing due to the build cache. Make it pass again by 1) changing it to modify the package in a way visible to the compiler, so that the change is not hidden by caching; 2) accepting "not installed but available in build cache" as always being a valid reason for a stale package, as go list does not try to figure out an underlying reason for why a package is stale when it finds it in the build cache but not installed. Updates #24436 Change-Id: Iaeaa298f153451ec913a653dd4e6da79a33055bb Reviewed-on: https://go-review.googlesource.com/123815 Reviewed-by: Daniel Martí <mvdan@mvdan.cc> Reviewed-by: Bryan C. Mills <bcmills@google.com>
I have found something about
|
I don't see how to modify those files according to https://github.com/golang/build/blob/master/vcs-test/README.md Also this bug was already filed: #22983 |
Closing as a dup of #22983. Since that was reported on 1.9.2, it doesn't need to be a release-blocker. |
What version of Go are you using (
go version
)?go version devel +2767c4e285 Fri Mar 16 21:01:28 2018 +0000 darwin/amd64
What operating system and processor architecture are you using (
go env
)?What did you do?
Running ./all.bash does not fail in any of tests:
ALL TESTS PASSED
.When I run
go test cmd/go
I get these failed tests:Also it takes 268 seconds compared to all.bash:
ok cmd/go 59.136s
What did you expect to see?
No errors.
The text was updated successfully, but these errors were encountered: