Description
Since #15513, we can now do go test -c -o dir/ ./...
. This works great and has a lot of use cases mentioned in the issue.
The issue, though, is this requires every package to have a unique name. This is not the case for most code bases, including Go itself (you can check with go list ./... | xargs -n1 basename | sort | uniq -d
I believe).
It would be great to allow an alternate naming for the compiled tests. For example, instead of naming a file a/b/c/some_test.go
as c.test
, it could be named a_b_c.test
or similar.
This would ensure the new mode works for all codebases.
This could be a new flag, or it could be the default when using -c
with multiple files. However, the latter is probably a breaking change unless its included in 1.21 which may be too late.
Metadata
Metadata
Assignees
Labels
Type
Projects
Status