-
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: 'vet' and 'test' duplicate flags from GOFLAGS if they are also specified explicitly #32471
Comments
Similarly, |
/cc @jayconrod @bcmills |
What happens for the other flags with the We should probably at least make |
|
|
The errors seem to be consistent for all flags. @elagergren-spideroak - It's not clear from the issue description, but for |
I'm having the same problem with persistent environment variables, even if I set the corresponding env var to an empty string:
|
It seems only |
@agnivade Yeah, sorry. From the docs:
|
@amenzhinsky - Rightly noted. This was introduced in CL 126656. Only go/internal/test/testflag.go has and go/internal/vet/vetflag.go has The args come from modification with The other go subcommands have a different code path for flag processing. |
I think the easiest fix would be removing this: go/src/cmd/go/internal/cmdflag/flag.go Lines 123 to 125 in 99957b6
Moreover all subcommands and tools accept flags overriding (correct me if I'm wrong, checked on that vert quickly). |
@bcmills Is this going to happen for 1.14? |
Yes. |
Change https://golang.org/cl/210937 mentions this issue: |
Change https://golang.org/cl/210940 mentions this issue: |
…rride flags from GOFLAGS This is a minimal fix for Go 1.14, but this parsing logic is much too complex and seems like it will cause more trouble going forward. I intend to mail a followup change to refactor this logic for 1.15. Updates #32471 Change-Id: I00ed07dcf3a23c9cd4ffa8cf764921fb5c18bcd6 Reviewed-on: https://go-review.googlesource.com/c/go/+/210940 Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Jay Conrod <jayconrod@google.com>
A minimal fix for 1.14 is now merged. I plan to follow that up with a cleaner refactoring for 1.15. |
This fixes a regression introduced in CL 209498, found while investigating #32471. Also fix $WORK replacement in cmd/go/internal/work.(*Builder).Showcmd when b.WorkDir includes a backslash and appears in a quoted string. That fix is needed in order to write a precise test that passes under Windows, since Windows directories nearly always include backslashes. Updates #35837 Change-Id: I5fddc5435d5d283a3e598989209d873b59b0a39c Reviewed-on: https://go-review.googlesource.com/c/go/+/210937 Run-TryBot: Bryan C. Mills <bcmills@google.com> Reviewed-by: Jay Conrod <jayconrod@google.com>
-mod=vendor is not needed if it's already set in GOFLAGS. So lets not set it unless it's needed. This is an issue for commands such as `go test` and `go vet` ( see: golang/go#32471 ). This avois such an issue.
Change https://golang.org/cl/211358 mentions this issue: |
* Only add explicit -mod=vendor if needed -mod=vendor is not needed if it's already set in GOFLAGS. So lets not set it unless it's needed. This is an issue for commands such as `go test` and `go vet` ( see: golang/go#32471 ). This avois such an issue. * Add comments for -mod=vendor flag addition This takes into us the suggestions from @estroz and adds the relevant comments for the addition of the -mod=vendor GOFLAG Co-authored-by: Eric Stroczynski <estroczy@redhat.com>
What version of Go are you using (
go version
)?What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Set
GOFLAGS=-vet=off
then rango test -vet=all
.What did you expect to see?
go test ...
to not error out.What did you see instead?
The text was updated successfully, but these errors were encountered: