[PATCH] user32/tests: Add more message conversion tests with different user window procedures

Nikolay Sivov bunglehead at gmail.com
Tue Feb 13 11:11:53 CST 2018


On 2/13/2018 6:05 PM, Nikolay Sivov wrote:
> +        case DLGPROCTEXT_DLGPROCA:
> +        todo_wine_if(IsWindowUnicode(hwnd))
> +            ok(textA == testtext, "%s: %s, unexpected text %s.\n", IsWindowUnicode(hwnd) ? "U" : "A",
> +                testmodes[mode], textA);
> +            break;
> +        case DLGPROCTEXT_DLGPROCW:
> +        todo_wine_if(!IsWindowUnicode(hwnd))
> +            ok(text == testtextW, "%s: %s, unexpected text %s.\n", IsWindowUnicode(hwnd) ? "U" : "A", testmodes[mode],
> +                wine_dbgstr_w(text));
> +            break;

Those two cases are unreachable. Ignore this one please, I'll send
another version.



More information about the wine-devel mailing list