-
Notifications
You must be signed in to change notification settings - Fork 17.8k
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,testing,doc: better information about debugging test cache failures #35301
Comments
Yes, it's the |
Ah, okay, that's frustrating but fair enough. Maybe this is worth posting a second ticket about. I have a test that generates configuration files in the Would it work to walk the file tree and set the mtime of every file after writing it, to a constant value? Alternatively it would be nice to have a hook to say "you can ignore changes to this file when computing the build cache" but maybe that is a Pandora's box we don't want to open. |
Can you change the test to write to a temporary file and only update the real file if the temporary file is different? I'm actually not completely confident that that would permit caching, but it might. |
In this particular case it turns out the test cache is not being written because there's a file in there with a modification time that is too recent. The file name doesn't print out because the file name prints out after the stat line. |
(Please let me know if commenting here is the wrong move, i will create an issue then) Currently trying to debug why our Go unit tests are not completely cached when retrying a CI pipeline. Stumbled over this issue because i find cache-misses hard to debug as well. Discoverability of the current debug features could be easily improved by extending some texts. There are some problems related to the documentation:
I gave
That is my user experience so far with debugging test cache misses. So the next thing what i am wondering is i guess why Go files are cached on their content but these used input files are not? I am wondering the same thing as #35301 (comment) i guess. |
Tackling this issue myself now. With the new gocacheprog capability - understanding how tests are cached becomes critical for us. I think that one thing that can really help is if we can print the full line of testlog/cache data in computeTestInputsID. Currently it only prints it if it's malformed. |
Hello. I am joining the conversation here with the same use case than @or-shachar . I wrote a gocacheprog for go1.24rc1 that works for caching builds but that fails with test caching. Thanks to |
I'm trying to figure out why Go is not caching a test I wrote. First, after about 10-15 minutes of searching (including through old issues here) I could not find the flag to enable the debug output that shows you how Go builds its cache. Finally, I found it
(GODEBUG=gocache{hash,test}=1)
I am trying to read through the output of
gocachehash=1
but it's still not easy to figure out what is going wrong. The obvious first thing to do is to run the tests twice and then diff the output and see what's different. However, the output (about 10,000 lines) from two gocachehash runs prints out in different order each time so the diff is very large.Next I tried sorting each output file and printing it. This yields a pretty manageable diff.
I repeated the same exercise with a test that printed out
(cached)
to compare. The cached test diff also hadHASH ... /T/go-build
lines so I assume those are a red herring. That essentially leaves this diff:However I am confused by this one as well because the content hash of the opened file is identical, so I'm not sure why Go is refusing to use the test cache.
Am I correct that these "stat" lines are the reason Go is not caching the result of this test? If so, what is the problem that is leading Go to not cache the results?
Can we build a tool to automate the process of debugging test hashes? E.g. run a test twice, capture the output, sort it, print the lines that differ.
The text was updated successfully, but these errors were encountered: