-
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
testing, cmd/go: dependencies in init functions are not recorded in the 'go test' cache key #44625
Comments
This is an unfortunate interaction between The I'm not entirely sure how we can fix this. The hook is currently installed in Line 1584 in 27684ea
|
In Bazel Not sure if that would be useful here or even a good idea. At minimum, it relies on packages being initialized in the order they're imported; the order is not defined in the spec. |
I don't know if we can do a perfect fix, but one thing we could do is have cmd/go set a known environment variable when invoking the test binary. Then we could add an init function in the os package that checks for the environment variable, and, if found, calls the internal/testlog functions with some flag to tells them to cache the data if there is no |
Could we fix this at link time, perhaps? I'm thinking something like:
That reduces the set of unrecorded races to only what happens within separate goroutines that are started during package-init, which should be quite rare. It does introduce a memory cost for test processes that are hijacked from within |
I am hitting this issue with an Appengine app tests. The app uses |
I tentatively removed the Unfortunate label. The behavior is definitely unfortunate, but not in the sense that we can't fix it, right? |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
This is a three-package layout with
foo
,foo/a
andfoo/b
. Both sub-packages have identical non-test code, but slightly different test code. Thefoo
package uses code froma
andb
in identical ways. Thefoo
package only has test code (to simplify the example; the real situation has code in all three packages).foo
- uses values initialized from environment variables infoo/a
andfoo/b
foo/a
- uses value initialized from environment variable; test code contains additional environment variable readfoo/b
- uses value initialized from environment variableCode to exercise issue
Testing these packages with and without the
SETTING
environment variable uses a cached result for thefoo
andfoo/b
packages. Thefoo/a
package, in contrast, runs each timeSETTING
is changed.What did you expect to see?
All packages that use
SETTING
, either directly or indirectly, should be run for each change to theSETTING
value.What did you see instead?
Only
foo/a
, with a read ofSETTING
from test code, is run each timeSETTING
is changed. The other packages are skipped with cached results.The text was updated successfully, but these errors were encountered: