Re: [PATCH 06/15] tests/plugins: use qemu_plugin_outs for inline stats

2024-07-18 Thread Pierrick Bouvier
On 7/18/24 02:45, Alex Bennée wrote: Using bare printf's in plugins is perfectly acceptable but they do rather mess up the output of "make check-tcg". Convert the printfs to use g_string and then output with the plugin output helper which will already be captured to .pout files by the test harnes

Re: [PATCH 06/15] tests/plugins: use qemu_plugin_outs for inline stats

2024-07-18 Thread Philippe Mathieu-Daudé
On 18/7/24 11:45, Alex Bennée wrote: Using bare printf's in plugins is perfectly acceptable but they do rather mess up the output of "make check-tcg". Convert the printfs to use g_string and then output with the plugin output helper which will already be captured to .pout files by the test harnes

[PATCH 06/15] tests/plugins: use qemu_plugin_outs for inline stats

2024-07-18 Thread Alex Bennée
Using bare printf's in plugins is perfectly acceptable but they do rather mess up the output of "make check-tcg". Convert the printfs to use g_string and then output with the plugin output helper which will already be captured to .pout files by the test harness. Signed-off-by: Alex Bennée --- te