Alexandre Julliard (@julliard) commented about include/wine/test.h:
{ if (winetest_color) printf( color_bright_red ); - winetest_print_context( "Test failed: " ); - vprintf(msg, args); + if (data->flaky_level) + { + winetest_print_context( "Test marked flaky: " ); + vprintf(msg, args); + InterlockedIncrement(&flaky_failures); + } + else + { + winetest_print_context( "Test failed: " ); + vprintf(msg, args); + InterlockedIncrement(&failures); + }
Flaky failures should probably use a different color, for instance the color used for todos, so that real errors stand out. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/772#note_7568