mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
comctl32/tests: Don't assert on not implemented function.
This commit is contained in:
parent
0bafb78755
commit
2d18e5aac4
@ -266,9 +266,16 @@ static void test_gettext(void)
|
||||
|
||||
DestroyWindow(hwnd);
|
||||
|
||||
SetLastError(0xdeadbeef);
|
||||
hwnd = CreateWindowExW(0, TOOLTIPS_CLASSW, NULL, 0,
|
||||
10, 10, 300, 100,
|
||||
NULL, NULL, NULL, 0);
|
||||
|
||||
if (!hwnd && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) {
|
||||
win_skip("CreateWindowExW is not implemented\n");
|
||||
return;
|
||||
}
|
||||
|
||||
assert(hwnd);
|
||||
|
||||
toolinfoW.cbSize = sizeof(TTTOOLINFOW);
|
||||
|
Loading…
Reference in New Issue
Block a user