riched20/tests: Skip some tests on Win9x and WinMe.

This commit is contained in:
Paul Vriens 2008-10-24 11:49:18 +02:00 committed by Alexandre Julliard
parent bd80529709
commit 5e05a7b9eb
1 changed files with 6 additions and 0 deletions

View File

@ -5658,9 +5658,15 @@ static void test_word_movement(void)
/* Make sure the behaviour is the same with a unicode richedit window,
* and using unicode functions. */
SetLastError(0xdeadbeef);
hwnd = CreateWindowW(RICHEDIT_CLASS20W, NULL,
ES_MULTILINE|WS_POPUP|WS_HSCROLL|WS_VSCROLL|WS_VISIBLE,
0, 0, 200, 60, NULL, NULL, hmoduleRichEdit, NULL);
if (!hwnd && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
{
win_skip("Needed unicode functions are not implemented\n");
return;
}
/* Test with a custom word break procedure that uses X as the delimiter. */
result = SendMessageW(hwnd, WM_SETTEXT, 0, (LPARAM)textW);