On Fri Sep 20 21:12:06 2024 +0000, Rémi Bernon wrote:
This is a lot of code for debug printing, do we really need it in the tests? There's a lot of tests in Wine, and I don't think being verbose in the test messages have been considered very useful yet. After a couple hundred of written tests you will likely find the `ok("got %#x", err)` pattern very appealing. In general tests aren't supposed to fail, so the messages don't matter much. When they do, you will anyway likely need to reproduce the failure locally, where you can add as much detail about it as you like. Note that we also have a test output size limit of 32K, and any todo_wine that is printed out should stay as little verbose as possible in order to not reach that limit and fail the test.
I understand, I have simplified most of the test logs.