Nikolay Sivov (@nsivov) commented about dlls/comctl32/tests/misc.c:
+ else + { + if (j >= 6) + todo_wine_if(lr != -1) + ok(lr == -1, "Got unexpected %Id.\n", lr); + else + todo_wine_if(lr != (j == 0 ? 0 : (j - 1))) + ok(lr == (j == 0 ? 0 : (j - 1)), "Got unexpected %Id.\n", lr); + } + + if (!strcmp(class_names[i], TOOLBARCLASSNAMEA)) + { + lr = SendMessageA(hwnd, TB_GETUNICODEFORMAT, 0, 0); + todo_wine_if(j >= 5) + ok(lr == 0, "Got unexpected %Id.\n", lr); + } I think this should go to toolbar tests.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/9191#note_118763