Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/tests/listbox.c:
- get_selected_value(list, selected);
- todo_wine
- ok(!strcmp(selected, "al_pha"), "Got %s\n", selected);
- SendMessageA(list, WM_CHAR, (WPARAM)'p', 0);
- get_selected_value(list, selected);
- todo_wine
- ok(!strcmp(selected, "alpha"), "Got %s\n", selected);
- /* Windows needs a certain time to pass until it starts a new search */
- SendMessageA(list, WM_CHAR, (WPARAM)'b', 0);
- get_selected_value(list, selected);
- todo_wine
- ok(!strcmp(selected, "alpha"), "Got %s\n", selected);
The following tests seem unnecessary.