-
Notifications
You must be signed in to change notification settings - Fork 17.7k
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
go/types: TestStdlib fails due failed import in vendored pprof #25367
Comments
Wonder how the try-bots passed this. |
Maybe this test is not run by try-bots?
|
That's right. Try-bots just run |
I was under the impression that Go's pprof vendor wouldn't use readline, so we wouldn't have to pull it in as a dependency. If so, this is hopefully just a mistake with an easy fix. |
We don't use the file, so we can delete it. |
We should come up with a strategy to keep this from happening again, though. Even if the go/types test gets run by the builders, it wouldn't be part of the trybots, so I'm sure that the file would get re-added sooner than later. If we were using a dependency management tool, this would be trivial - it's a main package, so it should not be vendored. Perhaps a better short-term solution is to add |
Change https://golang.org/cl/113295 mentions this issue: |
Currently there is no formal procedure to update this, so I will just write a script for update. |
Do you mean that |
What version of Go are you using (
go version
)?~/golang/src (master=) % go version
go version devel +6876447952 Sat May 12 16:26:36 2018 +0000 darwin/amd64
How to reproduce
Introduced in 46047e6 by @hyangah
Library "github.com/chzyer/readline" is not installed on my system and not vendored as well.
The text was updated successfully, but these errors were encountered: