-
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: failure messages should be easier to find #47080
Comments
@rogpeppe I'm honestly not sure who to CC on this issue, since https://dev.golang.org/owners isn't very well populated for the |
@mknyszek I thought it might be good to discuss the issue before making a concrete proposal - for example, maybe it's only me that sees this as a problem, or maybe adding new |
That makes sense, I'm just honestly not sure who to loop in as part of gardening to get the discussion going. |
Adding the JSON test output line sounds like a good idea to me. I empathize with having to skim through huge test output files, though those are almost never JSON output directly.
Worth noting that many CI systems support special output syntax for cases like these, such as https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message. I think they also tend to mix in some regex-based heuristics to automatically pick up errors with positions from common tools. I wonder why we'd need a flag to opt into the "test failed here" information; that sounds generally useful, and shouldn't take much space. |
My main concern is that it might end up looking odd and get complaints about unneeded verbosity. |
#62728 is an accepted proposal, i suppose we can close this as a dupe? |
I've spent a lot of time poring over CI test output trying to find exactly why a given test has failed.
Often the output of a high level test includes info-level logs that may end up very useful to determine
the cause of failure but are just noise when looking for the actual failure message.
There is currently no easy way to distinguish between info-level and error-level messages which makes
it hard to find the actual cause of a given failure. Often I end up editing the test output and excluding
all lines that match some regular expression, ending up with a smaller number of candidate lines which
include the culprit I'm searching for.
This is made harder by the fact that some failure messages are generated by calling
T.Log
and thenT.Fail
so it's not necessarily clear that the logged message represents a failure.Perhaps we could include an extra action type in the JSON test output that represents a call to
T.Fail
orT.FailNow
; for example:Perhaps the line we could also include a stack trace of the failure, making it easier for tooling to point directly to the offending code.
This doesn't help with regular non-JSON test output, but that's perhaps hard to fix without breaking people's expected test messages, though we could add a flag to enable an explicit "test failed here" output line.
The text was updated successfully, but these errors were encountered: