On Tue Aug 12 13:48:35 2025 +0000, Rémi Bernon wrote:
I think the question is whether the traces add value to the tests or if they are there just to aid development. If it's the latter I think it's usually preferred to keep these locally. In the former case and to avoid unnecessary growth of test output when no test will fail and nobody is ever going to look at them, you could also do `if (winetest_debug > 1) trace( ... )`.
Yes, gating them behind winetest_debug is much better, thanks.