-
Notifications
You must be signed in to change notification settings - Fork 18k
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: panic: LoadImport called with empty package path
when listing GOROOT/test/*.go
#60230
Comments
(CC @matloob) |
This reproduces with |
(Possibly related to #59905.) |
Change https://go.dev/cl/502615 mentions this issue: |
@gopherbot, please backport to 1.20. The change in go/parser behavior between Go 1.19 and Go 1.20 caused a regression in 1.20. |
Backport issue(s) opened: #60753 (for 1.19), #60754 (for 1.20). Remember to create the cherry-pick CL(s) as soon as the patch is submitted to master, according to https://go.dev/wiki/MinorReleases. |
Change https://go.dev/cl/502697 mentions this issue: |
Change https://go.dev/cl/502697 mentions this issue: |
The go parser previously checked for invalid import paths, go/build, seeing the parse error would put files with invalid import paths into InvalidGoFiles. golang.org/cl/424855 removed that check from the parser, which meant files with invalid import paths not have any parse errors on them and not be put into InvalidGoFiles. Do a check for invalid import paths in go/build soon after parsing so we can make sure files with invalid import paths go into InvalidGoFiles. This fixes an issue where the Go command assumed that if a file wasn't invalid it had non empty import paths, leading to a panic. Fixes #60754 Updates #60230 Updates #60686 Change-Id: I33c1dc9304649536834939cef7c689940236ee20 Reviewed-on: https://go-review.googlesource.com/c/go/+/502615 Reviewed-by: Bryan Mills <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Michael Matloob <[email protected]> Run-TryBot: Michael Matloob <[email protected]> (cherry picked from commit 962753b) Reviewed-on: https://go-review.googlesource.com/c/go/+/502697
Is this addressed in GO 1.22.3? Thank you! |
Yes, are you running into it? |
What did you do?
What did you expect to see?
An error message explaining why I can't load all of the
.go
files inGOROOT/test
as a single package.What did you see instead?
Panic!
The text was updated successfully, but these errors were encountered: