Commit 74271fc4 authored by Alexandre Julliard's avatar Alexandre Julliard

comctl32/tests: Disable a test that crashes on NT4.

parent ff28ec0d
...@@ -291,11 +291,14 @@ static void test_gettext(void) ...@@ -291,11 +291,14 @@ static void test_gettext(void)
r = SendMessageW(hwnd, TTM_ADDTOOL, 0, (LPARAM)&toolinfoW); r = SendMessageW(hwnd, TTM_ADDTOOL, 0, (LPARAM)&toolinfoW);
ok(r, "Adding the tool to the tooltip failed\n"); ok(r, "Adding the tool to the tooltip failed\n");
toolinfoW.hwnd = NULL; if (0) /* crashes on NT4 */
toolinfoW.uId = 0x1234ABCD; {
toolinfoW.lpszText = bufW; toolinfoW.hwnd = NULL;
SendMessageW(hwnd, TTM_GETTEXTW, 0, (LPARAM)&toolinfoW); toolinfoW.uId = 0x1234ABCD;
ok(toolinfoW.lpszText[0] == 0, "lpszText should be an empty string\n"); toolinfoW.lpszText = bufW;
SendMessageW(hwnd, TTM_GETTEXTW, 0, (LPARAM)&toolinfoW);
ok(toolinfoW.lpszText[0] == 0, "lpszText should be an empty string\n");
}
DestroyWindow(hwnd); DestroyWindow(hwnd);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment