Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/tests/combo.c:
+ + SendMessageA(combo, WM_CHAR, (WPARAM)'t', 0); + get_selected_value(combo, selected); + todo_wine + ok(!strcmp(selected, "beta"), "Got %s\n", selected); + dropped = SendMessageA(combo, CB_GETDROPPEDSTATE, 0, 0); + todo_wine + ok(dropped, "Expected combo box to be dropped\n"); + + /* Windows needs a certain time to pass until it starts a new search */ + + SendMessageA(combo, WM_CHAR, (WPARAM)'a', 0); + get_selected_value(combo, selected); + todo_wine + ok(!strcmp(selected, "beta"), "Got %s\n", selected); + Could you also test that after a timeout, you can start a new search with the same control? Same for the listbox tests.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/4794#note_87634