-
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/vet: "could not import" warning message not visible without -v. #9439
Comments
While writing this up (this is an issue I discovered long ago and added it to my TODO list to report it) just now, I investigated further and found out why it happens. You may or may not be able to reproduce it in your setup if you follow the steps above. It may be an issue or it may be working as intended. CauseThe reason
So, I could do After I did Possible solutionsI see two possible solutions:
I think fixing point 2 is easy and should be done. Fixing point 1 may be too complicated and not worth it. In fact, running |
Actually, that might not be correct. What's most important is that there is always a (machine-readable) way to distinguish between these 2 cases:
And I think that's currently the case. The exit code from So, as long as you get exit code 0 with no output, you can be sure there are no If that's really the case, then this is likely a non-issue. While it would be nice if |
I think it's working as intended. However, I do want to propose we make the "couldn't load import" message visible |
I agree with that. |
I've updated the issue title to reflect the latest status of this issue. Everything is working as intended, except that the "could not import" warning message should be displayed even if -v is not specified, otherwise the output can be visually misleading. The non-zero exit status is less visible to humans. |
I'm interested in working on this as this behaviour of govet caused me some confusion recently. I did some digging. The way this fails is: When check() creates types.Config, it builds it with importer.Default(). This provides a convenient hook pass a wrapped Importer/ImporterFrom, one that delegates all calls but collects failure evidence. check() could then update the local Package with failed imports, which would then be available to go vet for error reporting. I would suggest keeping a map[string]bool in the package var and reporting any failed imports at the end. E.g: if len(failedImports) > 0 { I could have a CL for this in a few days if this SG. |
Using Go 1.4 and latest tools subrepo:
By default,
vet
is supposed to detect "Suspicious calls to functions in the Printf family." I've noticed that it sometimes did not do that reliably (it would detect some cases but not others). I wrote the following .go file that reproduces the issue for me:What did you expect to see?
Both printf verb usage issues should be reported, not just one.
What did you see instead?
Here is my output of
vet
on that file/package:It detects the bad printf verb usage for a string type from standard library, but not external library.
It would be great if
vet
were more reliable, so I could depend on it to catch all printf verb misuse when possible (and it's certainly possible here).The text was updated successfully, but these errors were encountered: