The WmShowRestoreMinimizedOverlappedSeq message sequence in tests clearly show that there is a WM_ACTIVATE message at the end of ShowWindow() calls after restoring a minimized window.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47507 Signed-off-by: Zhiyi Zhang zzhang@codeweavers.com --- v2: Supersede 169418. Add more tests to show that WM_ACTIVATE is not from SetFocus. v3: Supersede 170219. Fix some tests that occasionally fail on TestBots. v4: Supersede 170290. Fix some more tests. Those optional messages just appear right after I submitted the patch and I ran it multiple times before. I ran it even more times and this time there should be no more failures because of optional messages.
dlls/user32/tests/msg.c | 238 +++++++++++++++++++++++++++++++++++++++- dlls/user32/winpos.c | 9 +- 2 files changed, 245 insertions(+), 2 deletions(-)
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 2766e7f5fb..4bf5c696ac 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -892,6 +892,138 @@ static const struct message WmShowVisMaxPopupSeq[] = { { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, { 0 } }; +/* ShowWindow(hwnd, SW_RESTORE) to a minimized window */ +static const struct message WmShowRestoreMinimizedOverlappedSeq[] = +{ + { HCBT_MINMAX, hook }, + { WM_QUERYOPEN, sent }, + { WM_GETTEXT, sent|optional }, + { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { WM_GETMINMAXINFO, sent|defwinproc }, + { WM_NCCALCSIZE, sent }, + { HCBT_ACTIVATE, hook }, + { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, + { WM_NCACTIVATE, sent }, + { WM_GETTEXT, sent|defwinproc|optional }, + { WM_ACTIVATE, sent|wparam, WA_ACTIVE }, + { HCBT_SETFOCUS, hook }, + { WM_SETFOCUS, sent|defwinproc }, + { WM_NCPAINT, sent }, + { WM_GETTEXT, sent|defwinproc|optional }, + { WM_GETTEXT, sent|defwinproc|optional }, + { WM_ERASEBKGND, sent }, + { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { WM_MOVE, sent|defwinproc }, + { WM_SIZE, sent|defwinproc }, + { WM_NCCALCSIZE, sent|optional }, + { WM_NCPAINT, sent|optional }, + { WM_ERASEBKGND, sent|optional }, + /* Note this WM_ACTIVATE message even if the window is already active and focused */ + { WM_ACTIVATE, sent|wparam|lparam, WA_ACTIVE, 0 }, + { WM_PAINT, sent }, + { 0 } +}; +/* ShowWindow(hwnd, SW_SHOWNOACTIVATE) to a minimized window */ +static const struct message WmShowNoActivateMinimizedOverlappedSeq[] = +{ + { HCBT_MINMAX, hook }, + { WM_QUERYOPEN, sent }, + { WM_GETTEXT, sent|optional }, + { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { WM_GETMINMAXINFO, sent|defwinproc }, + { WM_NCCALCSIZE, sent }, + { WM_NCPAINT, sent }, + { WM_GETTEXT, sent|defwinproc|optional }, + { WM_ERASEBKGND, sent }, + { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { WM_MOVE, sent|defwinproc }, + { WM_SIZE, sent|defwinproc }, + /* Following optional messages are on XP/2003 */ + { WM_NCCALCSIZE, sent|optional }, + { WM_NCPAINT, sent|optional }, + { WM_ERASEBKGND, sent|optional }, + { HCBT_SETFOCUS, hook|optional }, + { WM_SETFOCUS, sent|optional }, + { HCBT_ACTIVATE, hook|optional }, + { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, + { WM_NCACTIVATE, sent|optional }, + { WM_GETTEXT, sent|defwinproc|optional }, + { WM_ACTIVATE, sent|wparam|optional, WA_ACTIVE }, + { HCBT_SETFOCUS, hook|optional }, + { WM_SETFOCUS, sent|defwinproc|optional }, + { WM_KILLFOCUS, sent|optional }, + { WM_SETFOCUS, sent|optional }, + /* Note this WM_ACTIVATE message on XP even if the window is already active and focused */ + { WM_ACTIVATE, sent|wparam|lparam|optional, WA_ACTIVE, 0 }, + { WM_PAINT, sent }, + { 0 } +}; +/* ShowWindow(hwnd, SW_RESTORE) to an active minimized window */ +static const struct message WmShowRestoreActiveMinimizedOverlappedSeq[] = +{ + { HCBT_MINMAX, hook }, + { WM_QUERYOPEN, sent }, + { WM_GETTEXT, sent|optional }, + { WM_NCACTIVATE, sent }, + { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOSIZE|SWP_NOMOVE }, + { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, + { WM_NCCALCSIZE, sent|optional }, + { WM_MOVE, sent|optional }, + { WM_SIZE, sent|optional }, + { WM_GETTEXT, sent|optional }, + { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { WM_GETMINMAXINFO, sent|defwinproc }, + { WM_NCCALCSIZE, sent }, + { WM_NCPAINT, sent }, + { WM_GETTEXT, sent|defwinproc|optional }, + { WM_ERASEBKGND, sent }, + { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { WM_MOVE, sent|defwinproc }, + { WM_SIZE, sent|defwinproc }, + { WM_NCCALCSIZE, sent|optional }, + { WM_NCPAINT, sent|optional }, + { WM_ERASEBKGND, sent|optional }, + { HCBT_SETFOCUS, hook }, + { WM_SETFOCUS, sent }, + /* Note this WM_ACTIVATE message even if the window is already active */ + { WM_ACTIVATE, sent|wparam|lparam, WA_ACTIVE, 0 }, + { WM_PAINT, sent }, + { WM_GETMINMAXINFO, sent|optional }, + { 0 } +}; +/* ShowWindow(hwnd, SW_SHOWNOACTIVATE) to an active minimized window */ +static const struct message WmShowNoActivateActiveMinimizedOverlappedSeq[] = +{ + { HCBT_MINMAX, hook }, + { WM_QUERYOPEN, sent }, + { WM_GETTEXT, sent|optional }, + { WM_NCACTIVATE, sent }, + { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOSIZE|SWP_NOMOVE }, + { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, + { WM_NCCALCSIZE, sent|optional }, + { WM_MOVE, sent|optional }, + { WM_SIZE, sent|optional }, + { WM_GETTEXT, sent|optional }, + { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { WM_GETMINMAXINFO, sent|defwinproc }, + { WM_NCCALCSIZE, sent }, + { WM_NCPAINT, sent }, + { WM_GETTEXT, sent|defwinproc|optional }, + { WM_ERASEBKGND, sent }, + { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { WM_MOVE, sent|defwinproc }, + { WM_SIZE, sent|defwinproc }, + { WM_NCCALCSIZE, sent|optional }, + { WM_NCPAINT, sent|optional }, + { WM_ERASEBKGND, sent|optional }, + /* Following optional messages are present on XP */ + { HCBT_SETFOCUS, hook|optional }, + { WM_SETFOCUS, sent|optional }, + /* Note this WM_ACTIVATE message even if the window is already active and with flag SW_SHOWNOACTIVATE */ + { WM_ACTIVATE, sent|wparam|lparam|optional, WA_ACTIVE, 0 }, + { WM_PAINT, sent }, + { 0 } +}; /* CreateWindow (for a child popup window, not initially visible) */ static const struct message WmCreateChildPopupSeq[] = { { HCBT_CREATEWND, hook }, @@ -4636,7 +4768,7 @@ static void test_scroll_messages(HWND hwnd)
static void test_showwindow(void) { - HWND hwnd, hchild; + HWND hwnd, hwnd2, hchild; RECT rc;
hwnd = CreateWindowExA(0, "TestWindowClass", "Test overlapped", WS_OVERLAPPEDWINDOW, @@ -4773,6 +4905,68 @@ static void test_showwindow(void) ok_sequence(WmShowVisMaxPopupSeq, "ShowWindow(SW_SHOWMAXIMIZED):popup", FALSE); DestroyWindow(hwnd); flush_sequence(); + + /* Test 5: + * 1. Restoring a minimized window. + */ + hwnd = CreateWindowA("TestWindowClass", "window1", WS_VISIBLE | WS_OVERLAPPEDWINDOW, 0, 0, 100, 100, 0, 0, 0, 0); + ok(hwnd != NULL, "Failed to create window\n"); + + hwnd2 = CreateWindowA("static", "window2", WS_VISIBLE | WS_OVERLAPPEDWINDOW, 0, 0, 100, 100, 0, 0, 0, 0); + ok(hwnd2 != NULL, "Failed to create window\n"); + + ShowWindow(hwnd, SW_MINIMIZE); + SetActiveWindow(hwnd2); + ok(GetActiveWindow() == hwnd2, "Unexpected active window\n"); + flush_events(); + flush_sequence(); + ShowWindow(hwnd, SW_RESTORE); + flush_events(); + ok_sequence(WmShowRestoreMinimizedOverlappedSeq, + "ShowWindow(hwnd, SW_RESTORE): minimized overlapped", TRUE); + + ShowWindow(hwnd, SW_MINIMIZE); + SetActiveWindow(hwnd2); + ok(GetActiveWindow() == hwnd2, "Unexpected active window\n"); + flush_events(); + flush_sequence(); + ShowWindow(hwnd, SW_SHOWNOACTIVATE); + flush_events(); + ok_sequence(WmShowNoActivateMinimizedOverlappedSeq, + "ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped", TRUE); + + DestroyWindow(hwnd2); + DestroyWindow(hwnd); + flush_sequence(); + + /* Test 6: + * 1. Restoring a minimized but active window. + */ + hwnd = CreateWindowA("TestWindowClass", "parent", WS_VISIBLE | WS_OVERLAPPEDWINDOW, 0, 0, 100, 100, 0, 0, 0, 0); + ok(hwnd != NULL, "Failed to create window\n"); + + ShowWindow(hwnd, SW_MINIMIZE); + SetActiveWindow(hwnd); + ok(GetActiveWindow() == hwnd, "Unexpected active window\n"); + flush_events(); + flush_sequence(); + ShowWindow(hwnd, SW_RESTORE); + flush_events(); + ok_sequence(WmShowRestoreActiveMinimizedOverlappedSeq, + "ShowWindow(hwnd, SW_RESTORE): active minimized overlapped", TRUE); + + ShowWindow(hwnd, SW_MINIMIZE); + SetActiveWindow(hwnd); + ok(GetActiveWindow() == hwnd, "Unexpected active window\n"); + flush_events(); + flush_sequence(); + ShowWindow(hwnd, SW_SHOWNOACTIVATE); + flush_events(); + ok_sequence(WmShowNoActivateActiveMinimizedOverlappedSeq, + "ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped", TRUE); + + DestroyWindow(hwnd); + flush_sequence(); }
static void test_sys_menu(void) @@ -15415,6 +15609,40 @@ static const struct message WmRestoreMinimizedOverlappedSeq[] = { 0 } };
+/* DefWindowProcA(hwnd, WM_SYSCOMMAND, SC_RESTORE, 0) to an active minimized window */ +static const struct message WmRestoreActiveMinimizedOverlappedSeq[] = +{ + { HCBT_SYSCOMMAND, hook|wparam|lparam, SC_RESTORE, 0 }, + { HCBT_MINMAX, hook }, + { WM_QUERYOPEN, sent }, + { WM_GETTEXT, sent|optional }, + { WM_NCACTIVATE, sent }, + { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOSIZE|SWP_NOMOVE }, + { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, + { WM_NCCALCSIZE, sent|optional }, + { WM_MOVE, sent|optional }, + { WM_SIZE, sent|optional }, + { WM_GETTEXT, sent|optional }, + { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { WM_GETMINMAXINFO, sent|defwinproc }, + { WM_NCCALCSIZE, sent }, + { WM_NCPAINT, sent }, + { WM_GETTEXT, sent|defwinproc|optional }, + { WM_ERASEBKGND, sent }, + { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { WM_MOVE, sent|defwinproc }, + { WM_SIZE, sent|defwinproc }, + { WM_NCCALCSIZE, sent|optional }, + { WM_NCPAINT, sent|optional }, + { WM_ERASEBKGND, sent|optional }, + { HCBT_SETFOCUS, hook }, + { WM_SETFOCUS, sent }, + /* Note this WM_ACTIVATE messages even if the window is already active */ + { WM_ACTIVATE, sent|wparam|lparam, WA_ACTIVE, 0 }, + { WM_PAINT, sent }, + { 0 } +}; + struct rbuttonup_thread_data { HWND hwnd; @@ -15476,7 +15704,15 @@ static void test_defwinproc(void) DefWindowProcA(hwnd, WM_SYSCOMMAND, SC_RESTORE, 0); flush_events(); ok_sequence(WmRestoreMinimizedOverlappedSeq, "DefWindowProcA(SC_RESTORE):overlapped", TRUE); + + ShowWindow(hwnd, SW_MINIMIZE); + SetActiveWindow(hwnd); + ok(GetActiveWindow() == hwnd, "Unexpected active window\n"); + flush_events(); flush_sequence(); + DefWindowProcA(hwnd, WM_SYSCOMMAND, SC_RESTORE, 0); + flush_events(); + ok_sequence(WmRestoreActiveMinimizedOverlappedSeq, "DefWindowProcA(SC_RESTORE):active minimized overlapped", TRUE);
GetCursorPos(&pos); GetWindowRect(hwnd, &rect); diff --git a/dlls/user32/winpos.c b/dlls/user32/winpos.c index bbbab60fbe..ebfdf9b6f0 100644 --- a/dlls/user32/winpos.c +++ b/dlls/user32/winpos.c @@ -1182,7 +1182,14 @@ static BOOL show_window( HWND hwnd, INT cmd ) else WIN_ReleasePtr( wndPtr );
/* if previous state was minimized Windows sets focus to the window */ - if (style & WS_MINIMIZE) SetFocus( hwnd ); + if (style & WS_MINIMIZE) + { + SetFocus( hwnd ); + /* Send a WM_ACTIVATE message for a top level window, even if the window is already active */ + style = GetWindowLongW( hwnd, GWL_STYLE ); + if (!(style & WS_CHILD) && !(swp & SWP_NOACTIVATE)) + SendMessageW( hwnd, WM_ACTIVATE, WA_ACTIVE, 0 ); + }
done: SetThreadDpiAwarenessContext( context );
Hi,
While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=56872
Your paranoid android.
=== wvistau64_he (32 bit report) ===
user32: msg.c:16433: Test failed: 0: WaitForSingleObject failed
=== w7u (32 bit report) ===
user32: msg.c:4926: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x000f was expected, but got msg 0x0088 instead msg.c:10474: Test failed: did not get expected count for minimum timeout (23 != ~100).
=== w8adm (32 bit report) ===
user32: msg.c:13056: Test failed: WmMouseHoverSeq: 5: the msg sequence is not complete: expected 0000 - actual 001a
=== w1064v1809 (32 bit report) ===
user32: msg.c:10474: Test failed: did not get expected count for minimum timeout (54 != ~100).
=== w7pro64 (64 bit report) ===
user32: msg.c:4427: Test failed: WM_MDICREATE for maximized visible MDI child window: 56: in msg 0x0047 expecting wParam 0x1012 got 0x101a msg.c:4427: Test failed: WM_MDICREATE for maximized visible MDI child window: 61: in msg 0x0047 expecting wParam 0x1012 got 0x101a msg.c:4444: Test failed: Destroy visible maximized MDI child window: 2: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4477: Test failed: Maximize MDI child window with invisible parent: 31: in msg 0x0047 expecting wParam 0x33 got 0x3b msg.c:10454: Test failed: did not get zero count as expected (1). msg.c:10457: Test failed: did not get one count as expected (2). msg.c:10461: Test failed: killing replaced timer did not work (2).
Report errors: user32:msg prints too much data (55759 bytes)
=== w1064v1809 (64 bit report) ===
user32: msg.c:9531: Test failed: Shift+MouseButton press/release: 7: the msg 0x0202 was expected, but got msg 0x0007 instead msg.c:9531: Test failed: Shift+MouseButton press/release: 8: the msg 0x0202 was expected, but got msg 0x0101 instead msg.c:9531: Test failed: Shift+MouseButton press/release: 10: the msg 0x0101 should have been sent msg.c:9531: Test failed: Shift+MouseButton press/release: 11: the msg 0x0101 was expected, but got msg 0x0202 instead msg.c:9531: Test failed: Shift+MouseButton press/release: 12: the msg sequence is not complete: expected 0000 - actual 0202
=== debian10 (32 bit report) ===
user32: Unhandled exception: divide by zero in 32-bit code (0x7e92b9fb). dce.c:131: Test failed: got 0 dce.c:133: Test failed: got 0 dce.c:243: Test failed: invalid clip box (0,0)-(0,0) dce.c:257: Test failed: invalid clip box (0,0)-(0,0) dce.c:277: Test failed: invalid clip box (0,0)-(0,0) dce.c:284: Test failed: invalid clip box (0,0)-(0,0) dce.c:289: Test failed: invalid clip box (0,0)-(0,0) dce.c:302: Test failed: invalid clip box (0,0)-(0,0) dce.c:323: Test failed: invalid clip box (0,0)-(0,0) dce.c:330: Test failed: invalid clip box (0,0)-(0,0) dce.c:336: Test failed: invalid clip box (0,0)-(0,0) dce.c:349: Test failed: invalid clip box (0,0)-(0,0) dce.c:400: Test failed: invalid clip box (0,0)-(0,0) dce.c:412: Test failed: invalid clip box (0,0)-(0,0) dce.c:417: Test failed: invalid clip box (0,0)-(0,0) dce.c:422: Test failed: invalid clip box (0,0)-(0,0) dce.c:451: Test failed: invalid clip box (0,0)-(0,0) dce.c:499: Test failed: invalid clip box (0,0)-(0,0) dce.c:510: Test failed: invalid clip box (-30,-20)-(-30,-20) dce.c:518: Test failed: invalid clip box (-30,-20)-(-30,-20) dce.c:529: Test failed: invalid clip box (0,0)-(0,0) edit.c:2201: Test failed: Expected: 2, got len 0 edit.c:2202: Test failed: expected "\r\n", got "" edit.c:2838: Test failed: expected 11, got 9 edit.c:2850: Test failed: expected 11, got 9 edit.c:3019: Test failed: Unexpected buffer contents input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1339: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1342: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1345: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1348: Test failed: Wrong new pos: (0,0) input.c:1356: Test failed: Wrong new pos: (0,3) input.c:1359: Test failed: Wrong new pos: (0,3) input.c:1362: Test failed: Wrong new pos: (3,3) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1377: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1380: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1384: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1387: Test failed: Position changed: (0,0) input.c:1398: Test failed: Wrong new pos: (0,0) input.c:1405: Test failed: Wrong new pos: (0,0) input.c:1412: Test failed: Wrong new pos: (0,0) input.c:1425: Test failed: Wrong new pos: (0,0) listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty menu.c:732: Test failed: item rectangles are not separated by 4 pixels space menu.c:735: Test failed: menu item has wrong height: 0 should be 10 menu.c:755: Test failed: columns should be 4 pixels to the left (actual 0). menu.c:759: Test failed: width of owner drawn menu item is wrong. Got 0 expected 10 menu.c:763: Test failed: Height is incorrect. Got 0 expected 10 menu.c:794: Test failed: width of owner drawn menu item is wrong. Got 0 expected 10 menu.c:798: Test failed: Height of owner drawn menu item is wrong. Got 0 expected 18 Unhandled exception: divide by zero in 32-bit code (0x0046ff71). monitor.c:259: Test failed: Expect at least one adapter found monitor.c:261: Test failed: Expect at least one monitor found monitor.c:270: Test failed: Expect success monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:498: Test failed: couldn't get primary monitor monitor.c:530: Test failed: got primary 00000000 monitor.c:560: Test failed: GetMonitorInfo returned wrong value monitor.c:569: Test failed: GetMonitorInfo returned wrong value monitor.c:582: Test failed: GetMonitorInfo returned wrong value monitor.c:595: Test failed: GetMonitorInfo returned wrong value monitor.c:647: Test failed: Failed to find primary monitor monitor.c:652: Test failed: GetMonitorInfo error 1461 monitor.c:653: Test failed: not a primary monitor msg.c:13561: Test failed: MonitorFromPoint error 3735928559 msg.c:13566: Test failed: GetMonitorInfo error 1461 msg.c:13611: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13611: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13611: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:12007: Test failed: wrong qstatus 00090000 msg.c:12016: Test failed: wrong qstatus 00490040 msg.c:12037: Test failed: wrong qstatus 00090000 msg.c:12045: Test failed: wrong qstatus 00490040 msg.c:12056: Test failed: wrong qstatus 00090000 msg.c:12067: Test failed: wrong qstatus 00010000 msg.c:12078: Test failed: wrong qstatus 00010000 msg.c:12083: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:12086: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11203: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11214: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11228: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11238: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5488: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5876: Test failed: Expected 100, got 27 msg.c:5886: Test failed: Expected 100, got 27 msg.c:4064: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4086: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4110: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4116: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4317: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7405: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:8075: Test failed: Update region shouldn't be empty msg.c:8080: Test failed: Update region shouldn't be empty msg.c:8108: Test failed: Update region shouldn't be empty msg.c:8109: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8111: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8133: Test failed: Update region shouldn't be empty msg.c:8134: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8136: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8163: Test failed: Update region shouldn't be empty msg.c:8164: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8166: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8176: Test failed: Update region shouldn't be empty msg.c:8177: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8179: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8234: Test failed: Update region shouldn't be empty msg.c:8246: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8268: Test failed: Update region shouldn't be empty msg.c:8278: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8280: Test failed: Update region shouldn't be empty msg.c:8287: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8303: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8355: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8361: Test failed: Update region shouldn't be empty msg.c:8363: Test failed: Update region shouldn't be empty msg.c:8365: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8370: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8374: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8380: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8386: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8395: Test failed: Update region shouldn't be empty msg.c:8397: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8399: Test failed: Update region shouldn't be empty msg.c:8409: Test failed: Update region shouldn't be empty msg.c:8411: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8414: Test failed: Update region shouldn't be empty msg.c:8423: Test failed: Update region shouldn't be empty msg.c:8425: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8434: Test failed: Update region shouldn't be empty msg.c:8437: Test failed: Update region shouldn't be empty msg.c:8444: Test failed: Update region shouldn't be empty msg.c:8449: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8459: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8471: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8476: Test failed: Update region shouldn't be empty msg.c:8482: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8489: Test failed: Update region shouldn't be empty msg.c:8491: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8500: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8518: Test failed: Update region shouldn't be empty msg.c:8524: Test failed: Update region shouldn't be empty msg.c:8536: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8561: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8567: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8578: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8588: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8916: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9477: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9497: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9507: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11422: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11427: Test failed: WM_PAINT messages stopped msg.c:11442: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg: Timeout static.c:114: Test failed: g_nReceivedColorStatic expected 4 got 0 static.c:114: Test failed: g_nReceivedColorStatic expected 4 got 0 static.c:112: Test failed: expected 4 got 0 static.c:112: Test failed: expected 4 got 0 static.c:112: Test failed: expected 4 got 0 sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 0: wrong monitor rect (8256238,8256264)-(2123012247,88) expected (0,0)-(0,0) sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 1: wrong monitor rect (8256238,8256264)-(2123012247,88) expected (0,0)-(0,0) sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 2: wrong monitor rect (8256238,8256264)-(2123012247,88) expected (0,0)-(0,0) sysparams.c:3334: Test failed: 0/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 0/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 0/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/2: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/2: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/2: PhysicalToLogicalPointForPerMonitorDPI failed text.c:87: Test failed: In MM_HIENGLISH, DrawText with DT_CALCRECT should return a negative rectangle bottom. (bot=0) win.c:8330: Test failed: MonitorFromPoint error 3735928559 win.c:8335: Test failed: GetMonitorInfo error 1461 win.c:8416: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8043: Test failed: wrong window rect (100,100)-(212,127) win.c:6138: Test failed: parent client rect is empty win.c:5872: Test failed: 00CF008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5872: Test failed: 00CF008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2037: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2037: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2679: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2679: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2679: Test succeeded inside todo block: GetFocus() = 016D008E win.c:3096: Test succeeded inside todo block: Focus should be on child 000800A8, not 000800A8 win.c:7879: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4938: Test failed: pixel should be black, color is ffffffff win.c:4958: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: wrong update region win.c:5014: Test failed: wrong update region win.c:5034: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5048: Test failed: wrong update region win.c:5058: Test failed: wrong update region in excessive scroll win.c:5080: Test failed: wrong update region win.c:5089: Test failed: wrong update region win.c:5098: Test failed: wrong update region win.c:5113: Test failed: wrong update region win.c:5189: Test failed: pixel should be black, color is ffffffff win.c:5193: Test failed: pixel should be black, color is ffffffff win.c:5198: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5209: Test failed: wrong update region win.c:5220: Test failed: wrong update region win.c:1111: Test failed: window rect does not match: style:exstyle=0x14d00000:0x00000100, menu=0, win=(110,100)-(222,127), calc=(110,100)-(222,143) win.c:1118: Test failed: window rect does not match: style:exstyle=0x14d00000:0x00000100, menu=0, win=(110,100)-(222,127), calc=(110,100)-(222,143) win.c:5453: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5648: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5648: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5648: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5648: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5648: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5648: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5648: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5648: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5648: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5648: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5648: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5654: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5654: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5654: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5654: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5654: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5654: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5654: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5654: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5654: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5654: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5654: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5654: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5654: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5654: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5654: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5654: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5654: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5654: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5660: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5660: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5660: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5660: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5660: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5660: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5666: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5666: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5666: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5666: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5666: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5666: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5666: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5666: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5666: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5666: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5666: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5666: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5666: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5666: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5666: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5666: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5666: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5666: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5666: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5666: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5666: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5666: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5666: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5666: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5666: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5666: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5672: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5672: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5672: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5672: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5672: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5672: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5672: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5672: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5672: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5672: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5672: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5672: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5672: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5672: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5672: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5672: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5672: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5672: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5672: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5672: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5678: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5678: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5678: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5678: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5678: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5678: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5684: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5684: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5684: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5684: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6814: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:6986: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:6997: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7050: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7064: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7071: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7082: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7257: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7309: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7324: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7332: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7343: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7704: Test failed: GetUpdateRect returned empty region win.c:7705: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7719: Test failed: WM_PAINT should have been received in parent win.c:7763: Test failed: GetUpdateRect returned empty region win.c:7764: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7778: Test failed: WM_PAINT should have been received in parent win.c:3333: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3334: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9723: Test failed: assigned and retrieved update regions are different win.c:9746: Test failed: wrong update region win.c:9958: Test failed: pos = 00000000 win.c:9962: Test failed: pos = 00000000 win.c:9966: Test failed: pos = 00000000 win.c:9972: Test failed: pos = 00000000 win.c:9979: Test failed: pos = 00000000 win.c:9985: Test failed: pos = 00000000 win.c:9989: Test failed: pos = 00000000 win.c:9993: Test failed: pos = 00000000 win.c:10005: Test failed: pos = 00000000 win.c:10474: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11410: Test failed: got normal pos (100,200)-(212,227) win.c:11423: Test failed: got normal pos (100,200)-(212,227) win.c:11435: Test failed: got normal pos (100,200)-(212,227) win.c:11448: Test failed: got normal pos (100,200)-(212,227) win.c:11460: Test failed: got normal pos (100,200)-(212,227) win.c:11474: Test failed: got normal pos (100,200)-(212,227) win.c:11487: Test failed: got normal pos (100,200)-(212,227) win.c:11500: Test failed: got normal pos (100,200)-(212,227) win.c:11518: Test failed: got normal pos (200,300)-(312,327) win.c:11521: Test failed: got window rect (200,300)-(312,327) win.c:11534: Test failed: got normal pos (200,300)-(312,327) win.c:11556: Test failed: got normal pos (100,200)-(212,227) win.c:11577: Test failed: got normal pos (100,200)-(212,227) win.c:11630: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11687: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11687: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11687: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11687: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11687: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11687: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11687: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11687: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11687: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11687: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11722: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11722: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11722: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11722: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11722: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11722: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11722: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11722: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11722: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11722: Test failed: hwnd 9: expected rect (-1398,189)-(-1292,213), got (-1252,189)-(-1146,213)
Report errors: user32:clipboard crashed (c0000094) user32:menu crashed (c0000094) user32:win prints too much data (36077 bytes)
=== debian10 (32 bit French report) ===
user32: msg.c:13561: Test failed: MonitorFromPoint error 3735928559 msg.c:13566: Test failed: GetMonitorInfo error 1461 msg.c:13611: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13611: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13611: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:12007: Test failed: wrong qstatus 00090000 msg.c:12016: Test failed: wrong qstatus 00490040 msg.c:12037: Test failed: wrong qstatus 00090000 msg.c:12045: Test failed: wrong qstatus 00490040 msg.c:12056: Test failed: wrong qstatus 00090000 msg.c:12067: Test failed: wrong qstatus 00010000 msg.c:12078: Test failed: wrong qstatus 00010000 msg.c:12083: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:12086: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11203: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11214: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11228: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11238: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5488: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5876: Test failed: Expected 100, got 27 msg.c:5886: Test failed: Expected 100, got 27 msg.c:4064: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4086: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4110: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4116: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4317: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7405: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:8075: Test failed: Update region shouldn't be empty msg.c:8080: Test failed: Update region shouldn't be empty msg.c:8108: Test failed: Update region shouldn't be empty msg.c:8109: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8111: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8133: Test failed: Update region shouldn't be empty msg.c:8134: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8136: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8163: Test failed: Update region shouldn't be empty msg.c:8164: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8166: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8176: Test failed: Update region shouldn't be empty msg.c:8177: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8179: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8234: Test failed: Update region shouldn't be empty msg.c:8246: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8268: Test failed: Update region shouldn't be empty msg.c:8278: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8280: Test failed: Update region shouldn't be empty msg.c:8287: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8303: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8355: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8361: Test failed: Update region shouldn't be empty msg.c:8363: Test failed: Update region shouldn't be empty msg.c:8365: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8370: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8374: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8380: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8386: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8395: Test failed: Update region shouldn't be empty msg.c:8397: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8399: Test failed: Update region shouldn't be empty msg.c:8409: Test failed: Update region shouldn't be empty msg.c:8411: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8414: Test failed: Update region shouldn't be empty msg.c:8423: Test failed: Update region shouldn't be empty msg.c:8425: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8434: Test failed: Update region shouldn't be empty msg.c:8437: Test failed: Update region shouldn't be empty msg.c:8444: Test failed: Update region shouldn't be empty msg.c:8449: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8459: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8471: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8476: Test failed: Update region shouldn't be empty msg.c:8482: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8489: Test failed: Update region shouldn't be empty msg.c:8491: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8500: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8518: Test failed: Update region shouldn't be empty msg.c:8524: Test failed: Update region shouldn't be empty msg.c:8536: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8561: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8567: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8578: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8588: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8916: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9477: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9497: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9507: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11422: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11427: Test failed: WM_PAINT messages stopped msg.c:11442: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg: Timeout
=== debian10 (32 bit Japanese:Japan report) ===
user32: msg.c:13561: Test failed: MonitorFromPoint error 3735928559 msg.c:13566: Test failed: GetMonitorInfo error 1461 msg.c:13611: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13611: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13611: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:12007: Test failed: wrong qstatus 00090000 msg.c:12016: Test failed: wrong qstatus 00490040 msg.c:12037: Test failed: wrong qstatus 00090000 msg.c:12045: Test failed: wrong qstatus 00490040 msg.c:12056: Test failed: wrong qstatus 00090000 msg.c:12067: Test failed: wrong qstatus 00010000 msg.c:12078: Test failed: wrong qstatus 00010000 msg.c:12083: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:12086: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11203: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11214: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11228: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11238: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5488: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5876: Test failed: Expected 100, got 27 msg.c:5886: Test failed: Expected 100, got 27 msg.c:4064: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4086: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4110: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4116: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4317: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7405: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:8075: Test failed: Update region shouldn't be empty msg.c:8080: Test failed: Update region shouldn't be empty msg.c:8108: Test failed: Update region shouldn't be empty msg.c:8109: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8111: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8133: Test failed: Update region shouldn't be empty msg.c:8134: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8136: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8163: Test failed: Update region shouldn't be empty msg.c:8164: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8166: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8176: Test failed: Update region shouldn't be empty msg.c:8177: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8179: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8234: Test failed: Update region shouldn't be empty msg.c:8246: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8268: Test failed: Update region shouldn't be empty msg.c:8278: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8280: Test failed: Update region shouldn't be empty msg.c:8287: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8303: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8355: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8361: Test failed: Update region shouldn't be empty msg.c:8363: Test failed: Update region shouldn't be empty msg.c:8365: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8370: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8374: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8380: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8386: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8395: Test failed: Update region shouldn't be empty msg.c:8397: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8399: Test failed: Update region shouldn't be empty msg.c:8409: Test failed: Update region shouldn't be empty msg.c:8411: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8414: Test failed: Update region shouldn't be empty msg.c:8423: Test failed: Update region shouldn't be empty msg.c:8425: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8434: Test failed: Update region shouldn't be empty msg.c:8437: Test failed: Update region shouldn't be empty msg.c:8444: Test failed: Update region shouldn't be empty msg.c:8449: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8459: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8471: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8476: Test failed: Update region shouldn't be empty msg.c:8482: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8489: Test failed: Update region shouldn't be empty msg.c:8491: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8500: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8518: Test failed: Update region shouldn't be empty msg.c:8524: Test failed: Update region shouldn't be empty msg.c:8536: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8561: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8567: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8578: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8588: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8916: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9477: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9497: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9507: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11422: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11427: Test failed: WM_PAINT messages stopped msg.c:11442: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg: Timeout
=== debian10 (32 bit Chinese:China report) ===
user32: Unhandled exception: divide by zero in 32-bit code (0x7eba59fb). dce.c:131: Test failed: got 0 dce.c:133: Test failed: got 0 dce.c:243: Test failed: invalid clip box (0,0)-(0,0) dce.c:257: Test failed: invalid clip box (0,0)-(0,0) dce.c:277: Test failed: invalid clip box (0,0)-(0,0) dce.c:284: Test failed: invalid clip box (0,0)-(0,0) dce.c:289: Test failed: invalid clip box (0,0)-(0,0) dce.c:302: Test failed: invalid clip box (0,0)-(0,0) dce.c:323: Test failed: invalid clip box (0,0)-(0,0) dce.c:330: Test failed: invalid clip box (0,0)-(0,0) dce.c:336: Test failed: invalid clip box (0,0)-(0,0) dce.c:349: Test failed: invalid clip box (0,0)-(0,0) dce.c:400: Test failed: invalid clip box (0,0)-(0,0) dce.c:412: Test failed: invalid clip box (0,0)-(0,0) dce.c:417: Test failed: invalid clip box (0,0)-(0,0) dce.c:422: Test failed: invalid clip box (0,0)-(0,0) dce.c:451: Test failed: invalid clip box (0,0)-(0,0) dce.c:499: Test failed: invalid clip box (0,0)-(0,0) dce.c:510: Test failed: invalid clip box (-30,-20)-(-30,-20) dce.c:518: Test failed: invalid clip box (-30,-20)-(-30,-20) dce.c:529: Test failed: invalid clip box (0,0)-(0,0) edit.c:2201: Test failed: Expected: 2, got len 0 edit.c:2202: Test failed: expected "\r\n", got "" edit.c:2838: Test failed: expected 11, got 9 edit.c:2850: Test failed: expected 11, got 9 edit.c:3019: Test failed: Unexpected buffer contents input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1339: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1342: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1345: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1348: Test failed: Wrong new pos: (0,0) input.c:1356: Test failed: Wrong new pos: (0,3) input.c:1359: Test failed: Wrong new pos: (0,3) input.c:1362: Test failed: Wrong new pos: (3,3) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1377: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1380: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1384: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1387: Test failed: Position changed: (0,0) input.c:1398: Test failed: Wrong new pos: (0,0) input.c:1405: Test failed: Wrong new pos: (0,0) input.c:1412: Test failed: Wrong new pos: (0,0) input.c:1425: Test failed: Wrong new pos: (0,0) listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty menu.c:732: Test failed: item rectangles are not separated by 4 pixels space menu.c:735: Test failed: menu item has wrong height: 0 should be 10 menu.c:755: Test failed: columns should be 4 pixels to the left (actual 0). menu.c:759: Test failed: width of owner drawn menu item is wrong. Got 0 expected 10 menu.c:763: Test failed: Height is incorrect. Got 0 expected 10 menu.c:794: Test failed: width of owner drawn menu item is wrong. Got 0 expected 10 menu.c:798: Test failed: Height of owner drawn menu item is wrong. Got 0 expected 18 Unhandled exception: divide by zero in 32-bit code (0x0046ff71). monitor.c:259: Test failed: Expect at least one adapter found monitor.c:261: Test failed: Expect at least one monitor found monitor.c:270: Test failed: Expect success monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:498: Test failed: couldn't get primary monitor monitor.c:530: Test failed: got primary 00000000 monitor.c:560: Test failed: GetMonitorInfo returned wrong value monitor.c:569: Test failed: GetMonitorInfo returned wrong value monitor.c:582: Test failed: GetMonitorInfo returned wrong value monitor.c:595: Test failed: GetMonitorInfo returned wrong value monitor.c:647: Test failed: Failed to find primary monitor monitor.c:652: Test failed: GetMonitorInfo error 1461 monitor.c:653: Test failed: not a primary monitor msg.c:13561: Test failed: MonitorFromPoint error 3735928559 msg.c:13566: Test failed: GetMonitorInfo error 1461 msg.c:13611: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13611: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13611: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:12007: Test failed: wrong qstatus 00090000 msg.c:12016: Test failed: wrong qstatus 00490040 msg.c:12037: Test failed: wrong qstatus 00090000 msg.c:12045: Test failed: wrong qstatus 00490040 msg.c:12056: Test failed: wrong qstatus 00090000 msg.c:12067: Test failed: wrong qstatus 00010000 msg.c:12078: Test failed: wrong qstatus 00010000 msg.c:12083: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:12086: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11203: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11214: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11228: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11238: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5488: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5876: Test failed: Expected 100, got 27 msg.c:5886: Test failed: Expected 100, got 27 msg.c:4064: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4086: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4110: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4116: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4317: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7405: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:8075: Test failed: Update region shouldn't be empty msg.c:8080: Test failed: Update region shouldn't be empty msg.c:8108: Test failed: Update region shouldn't be empty msg.c:8109: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8111: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8133: Test failed: Update region shouldn't be empty msg.c:8134: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8136: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8163: Test failed: Update region shouldn't be empty msg.c:8164: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8166: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8176: Test failed: Update region shouldn't be empty msg.c:8177: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8179: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8234: Test failed: Update region shouldn't be empty msg.c:8246: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8268: Test failed: Update region shouldn't be empty msg.c:8278: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8280: Test failed: Update region shouldn't be empty msg.c:8287: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8303: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8355: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8361: Test failed: Update region shouldn't be empty msg.c:8363: Test failed: Update region shouldn't be empty msg.c:8365: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8370: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8374: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8380: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8386: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8395: Test failed: Update region shouldn't be empty msg.c:8397: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8399: Test failed: Update region shouldn't be empty msg.c:8409: Test failed: Update region shouldn't be empty msg.c:8411: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8414: Test failed: Update region shouldn't be empty msg.c:8423: Test failed: Update region shouldn't be empty msg.c:8425: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8434: Test failed: Update region shouldn't be empty msg.c:8437: Test failed: Update region shouldn't be empty msg.c:8444: Test failed: Update region shouldn't be empty msg.c:8449: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8459: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8471: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8476: Test failed: Update region shouldn't be empty msg.c:8482: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8489: Test failed: Update region shouldn't be empty msg.c:8491: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8500: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8518: Test failed: Update region shouldn't be empty msg.c:8524: Test failed: Update region shouldn't be empty msg.c:8536: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8561: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8567: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8578: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8588: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8916: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9477: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9497: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9507: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11422: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11427: Test failed: WM_PAINT messages stopped msg.c:11442: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg: Timeout static.c:114: Test failed: g_nReceivedColorStatic expected 4 got 0 static.c:114: Test failed: g_nReceivedColorStatic expected 4 got 0 static.c:112: Test failed: expected 4 got 0 static.c:112: Test failed: expected 4 got 0 static.c:112: Test failed: expected 4 got 0 sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 0: wrong monitor rect (8256238,8256264)-(2125609111,88) expected (0,0)-(0,0) sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 1: wrong monitor rect (8256238,8256264)-(2125609111,88) expected (0,0)-(0,0) sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 2: wrong monitor rect (8256238,8256264)-(2125609111,88) expected (0,0)-(0,0) sysparams.c:3334: Test failed: 0/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 0/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 0/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/2: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/2: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/2: PhysicalToLogicalPointForPerMonitorDPI failed text.c:87: Test failed: In MM_HIENGLISH, DrawText with DT_CALCRECT should return a negative rectangle bottom. (bot=0) win.c:8330: Test failed: MonitorFromPoint error 3735928559 win.c:8335: Test failed: GetMonitorInfo error 1461 win.c:8416: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8043: Test failed: wrong window rect (100,100)-(212,127) win.c:6138: Test failed: parent client rect is empty win.c:5872: Test failed: 00CF008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5872: Test failed: 00CF008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2037: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2037: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2679: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2679: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2679: Test succeeded inside todo block: GetFocus() = 016D008E win.c:3096: Test succeeded inside todo block: Focus should be on child 000800A8, not 000800A8 win.c:7879: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4938: Test failed: pixel should be black, color is ffffffff win.c:4958: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: wrong update region win.c:5014: Test failed: wrong update region win.c:5034: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5048: Test failed: wrong update region win.c:5058: Test failed: wrong update region in excessive scroll win.c:5080: Test failed: wrong update region win.c:5089: Test failed: wrong update region win.c:5098: Test failed: wrong update region win.c:5113: Test failed: wrong update region win.c:5189: Test failed: pixel should be black, color is ffffffff win.c:5193: Test failed: pixel should be black, color is ffffffff win.c:5198: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5209: Test failed: wrong update region win.c:5220: Test failed: wrong update region win.c:1111: Test failed: window rect does not match: style:exstyle=0x14d00000:0x00000100, menu=0, win=(110,100)-(222,127), calc=(110,100)-(222,143) win.c:1118: Test failed: window rect does not match: style:exstyle=0x14d00000:0x00000100, menu=0, win=(110,100)-(222,127), calc=(110,100)-(222,143) win.c:5453: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5648: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5648: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5648: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5648: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5648: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5648: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5648: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5648: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5648: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5648: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5648: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5654: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5654: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5654: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5654: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5654: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5654: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5654: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5654: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5654: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5654: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5654: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5654: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5654: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5654: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5654: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5654: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5654: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5654: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5660: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5660: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5660: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5660: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5660: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5660: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5666: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5666: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5666: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5666: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5666: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5666: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5666: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5666: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5666: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5666: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5666: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5666: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5666: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5666: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5666: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5666: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5666: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5666: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5666: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5666: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5666: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5666: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5666: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5666: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5666: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5666: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5672: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5672: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5672: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5672: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5672: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5672: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5672: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5672: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5672: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5672: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5672: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5672: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5672: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5672: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5672: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5672: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5672: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5672: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5672: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5672: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5678: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5678: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5678: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5678: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5678: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5678: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5684: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5684: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5684: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5684: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6814: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:6986: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:6997: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7050: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7064: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7071: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7082: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7257: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7309: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7324: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7332: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7343: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7704: Test failed: GetUpdateRect returned empty region win.c:7705: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7719: Test failed: WM_PAINT should have been received in parent win.c:7763: Test failed: GetUpdateRect returned empty region win.c:7764: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7778: Test failed: WM_PAINT should have been received in parent win.c:3333: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3334: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9723: Test failed: assigned and retrieved update regions are different win.c:9746: Test failed: wrong update region win.c:9958: Test failed: pos = 00000000 win.c:9962: Test failed: pos = 00000000 win.c:9966: Test failed: pos = 00000000 win.c:9972: Test failed: pos = 00000000 win.c:9979: Test failed: pos = 00000000 win.c:9985: Test failed: pos = 00000000 win.c:9989: Test failed: pos = 00000000 win.c:9993: Test failed: pos = 00000000 win.c:10005: Test failed: pos = 00000000 win.c:10474: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11410: Test failed: got normal pos (100,200)-(212,227) win.c:11423: Test failed: got normal pos (100,200)-(212,227) win.c:11435: Test failed: got normal pos (100,200)-(212,227) win.c:11448: Test failed: got normal pos (100,200)-(212,227) win.c:11460: Test failed: got normal pos (100,200)-(212,227) win.c:11474: Test failed: got normal pos (100,200)-(212,227) win.c:11487: Test failed: got normal pos (100,200)-(212,227) win.c:11500: Test failed: got normal pos (100,200)-(212,227) win.c:11518: Test failed: got normal pos (200,300)-(312,327) win.c:11521: Test failed: got window rect (200,300)-(312,327) win.c:11534: Test failed: got normal pos (200,300)-(312,327) win.c:11556: Test failed: got normal pos (100,200)-(212,227) win.c:11577: Test failed: got normal pos (100,200)-(212,227) win.c:11630: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11687: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11687: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11687: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11687: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11687: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11687: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11687: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11687: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11687: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11687: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11722: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11722: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11722: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11722: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11722: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11722: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11722: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11722: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11722: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11722: Test failed: hwnd 9: expected rect (-1398,189)-(-1292,213), got (-1252,189)-(-1146,213)
Report errors: user32:clipboard crashed (c0000094) user32:menu crashed (c0000094) user32:win prints too much data (36077 bytes)
=== debian10 (32 bit WoW report) ===
user32: Unhandled exception: divide by zero in 32-bit code (0x7e92b9fb). dce.c:131: Test failed: got 0 dce.c:133: Test failed: got 0 dce.c:243: Test failed: invalid clip box (0,0)-(0,0) dce.c:257: Test failed: invalid clip box (0,0)-(0,0) dce.c:277: Test failed: invalid clip box (0,0)-(0,0) dce.c:284: Test failed: invalid clip box (0,0)-(0,0) dce.c:289: Test failed: invalid clip box (0,0)-(0,0) dce.c:302: Test failed: invalid clip box (0,0)-(0,0) dce.c:323: Test failed: invalid clip box (0,0)-(0,0) dce.c:330: Test failed: invalid clip box (0,0)-(0,0) dce.c:336: Test failed: invalid clip box (0,0)-(0,0) dce.c:349: Test failed: invalid clip box (0,0)-(0,0) dce.c:400: Test failed: invalid clip box (0,0)-(0,0) dce.c:412: Test failed: invalid clip box (0,0)-(0,0) dce.c:417: Test failed: invalid clip box (0,0)-(0,0) dce.c:422: Test failed: invalid clip box (0,0)-(0,0) dce.c:451: Test failed: invalid clip box (0,0)-(0,0) dce.c:499: Test failed: invalid clip box (0,0)-(0,0) dce.c:510: Test failed: invalid clip box (-30,-20)-(-30,-20) dce.c:518: Test failed: invalid clip box (-30,-20)-(-30,-20) dce.c:529: Test failed: invalid clip box (0,0)-(0,0) edit.c:2201: Test failed: Expected: 2, got len 0 edit.c:2202: Test failed: expected "\r\n", got "" edit.c:2838: Test failed: expected 11, got 9 edit.c:2850: Test failed: expected 11, got 9 edit.c:3019: Test failed: Unexpected buffer contents input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1339: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1342: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1345: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1348: Test failed: Wrong new pos: (0,0) input.c:1356: Test failed: Wrong new pos: (0,3) input.c:1359: Test failed: Wrong new pos: (0,3) input.c:1362: Test failed: Wrong new pos: (3,3) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1377: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1380: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1384: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1387: Test failed: Position changed: (0,0) input.c:1398: Test failed: Wrong new pos: (0,0) input.c:1405: Test failed: Wrong new pos: (0,0) input.c:1412: Test failed: Wrong new pos: (0,0) input.c:1425: Test failed: Wrong new pos: (0,0) listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty menu.c:732: Test failed: item rectangles are not separated by 4 pixels space menu.c:735: Test failed: menu item has wrong height: 0 should be 10 menu.c:755: Test failed: columns should be 4 pixels to the left (actual 0). menu.c:759: Test failed: width of owner drawn menu item is wrong. Got 0 expected 10 menu.c:763: Test failed: Height is incorrect. Got 0 expected 10 menu.c:794: Test failed: width of owner drawn menu item is wrong. Got 0 expected 10 menu.c:798: Test failed: Height of owner drawn menu item is wrong. Got 0 expected 18 Unhandled exception: divide by zero in 32-bit code (0x0046ff71). monitor.c:259: Test failed: Expect at least one adapter found monitor.c:261: Test failed: Expect at least one monitor found monitor.c:270: Test failed: Expect success monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:498: Test failed: couldn't get primary monitor monitor.c:530: Test failed: got primary 00000000 monitor.c:560: Test failed: GetMonitorInfo returned wrong value monitor.c:569: Test failed: GetMonitorInfo returned wrong value monitor.c:582: Test failed: GetMonitorInfo returned wrong value monitor.c:595: Test failed: GetMonitorInfo returned wrong value monitor.c:647: Test failed: Failed to find primary monitor monitor.c:652: Test failed: GetMonitorInfo error 1461 monitor.c:653: Test failed: not a primary monitor msg.c:13561: Test failed: MonitorFromPoint error 3735928559 msg.c:13566: Test failed: GetMonitorInfo error 1461 msg.c:13611: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13611: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13611: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:12007: Test failed: wrong qstatus 00090000 msg.c:12016: Test failed: wrong qstatus 00490040 msg.c:12037: Test failed: wrong qstatus 00090000 msg.c:12045: Test failed: wrong qstatus 00490040 msg.c:12056: Test failed: wrong qstatus 00090000 msg.c:12067: Test failed: wrong qstatus 00010000 msg.c:12078: Test failed: wrong qstatus 00010000 msg.c:12083: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:12086: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11203: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11214: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11228: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11238: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5488: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5876: Test failed: Expected 100, got 27 msg.c:5886: Test failed: Expected 100, got 27 msg.c:4064: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4086: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4110: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4116: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4317: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7405: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:8075: Test failed: Update region shouldn't be empty msg.c:8080: Test failed: Update region shouldn't be empty msg.c:8108: Test failed: Update region shouldn't be empty msg.c:8109: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8111: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8133: Test failed: Update region shouldn't be empty msg.c:8134: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8136: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8163: Test failed: Update region shouldn't be empty msg.c:8164: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8166: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8176: Test failed: Update region shouldn't be empty msg.c:8177: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8179: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8234: Test failed: Update region shouldn't be empty msg.c:8246: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8268: Test failed: Update region shouldn't be empty msg.c:8278: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8280: Test failed: Update region shouldn't be empty msg.c:8287: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8303: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8355: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8361: Test failed: Update region shouldn't be empty msg.c:8363: Test failed: Update region shouldn't be empty msg.c:8365: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8370: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8374: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8380: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8386: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8395: Test failed: Update region shouldn't be empty msg.c:8397: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8399: Test failed: Update region shouldn't be empty msg.c:8409: Test failed: Update region shouldn't be empty msg.c:8411: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8414: Test failed: Update region shouldn't be empty msg.c:8423: Test failed: Update region shouldn't be empty msg.c:8425: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8434: Test failed: Update region shouldn't be empty msg.c:8437: Test failed: Update region shouldn't be empty msg.c:8444: Test failed: Update region shouldn't be empty msg.c:8449: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8459: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8471: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8476: Test failed: Update region shouldn't be empty msg.c:8482: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8489: Test failed: Update region shouldn't be empty msg.c:8491: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8500: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8518: Test failed: Update region shouldn't be empty msg.c:8524: Test failed: Update region shouldn't be empty msg.c:8536: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8561: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8567: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8578: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8588: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8916: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9477: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9497: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9507: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11422: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11427: Test failed: WM_PAINT messages stopped msg.c:11442: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg: Timeout static.c:114: Test failed: g_nReceivedColorStatic expected 4 got 0 static.c:114: Test failed: g_nReceivedColorStatic expected 4 got 0 static.c:112: Test failed: expected 4 got 0 static.c:112: Test failed: expected 4 got 0 static.c:112: Test failed: expected 4 got 0 sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 0: wrong monitor rect (8256238,8256264)-(2123012247,88) expected (0,0)-(0,0) sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 1: wrong monitor rect (8256238,8256264)-(2123012247,88) expected (0,0)-(0,0) sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 2: wrong monitor rect (8256238,8256264)-(2123012247,88) expected (0,0)-(0,0) sysparams.c:3334: Test failed: 0/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 0/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 0/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/2: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/2: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/2: PhysicalToLogicalPointForPerMonitorDPI failed text.c:87: Test failed: In MM_HIENGLISH, DrawText with DT_CALCRECT should return a negative rectangle bottom. (bot=0) win.c:8330: Test failed: MonitorFromPoint error 3735928559 win.c:8335: Test failed: GetMonitorInfo error 1461 win.c:8416: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8043: Test failed: wrong window rect (100,100)-(212,127) win.c:6138: Test failed: parent client rect is empty win.c:5872: Test failed: 00CF008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5872: Test failed: 00CF008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2037: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2037: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2679: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2679: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2679: Test succeeded inside todo block: GetFocus() = 016D008E win.c:3096: Test succeeded inside todo block: Focus should be on child 000800A8, not 000800A8 win.c:7879: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4938: Test failed: pixel should be black, color is ffffffff win.c:4958: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: wrong update region win.c:5014: Test failed: wrong update region win.c:5034: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5048: Test failed: wrong update region win.c:5058: Test failed: wrong update region in excessive scroll win.c:5080: Test failed: wrong update region win.c:5089: Test failed: wrong update region win.c:5098: Test failed: wrong update region win.c:5113: Test failed: wrong update region win.c:5189: Test failed: pixel should be black, color is ffffffff win.c:5193: Test failed: pixel should be black, color is ffffffff win.c:5198: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5209: Test failed: wrong update region win.c:5220: Test failed: wrong update region win.c:1111: Test failed: window rect does not match: style:exstyle=0x14d00000:0x00000100, menu=0, win=(110,100)-(222,127), calc=(110,100)-(222,143) win.c:1118: Test failed: window rect does not match: style:exstyle=0x14d00000:0x00000100, menu=0, win=(110,100)-(222,127), calc=(110,100)-(222,143) win.c:5453: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5648: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5648: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5648: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5648: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5648: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5648: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5648: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5648: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5648: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5648: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5648: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5654: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5654: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5654: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5654: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5654: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5654: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5654: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5654: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5654: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5654: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5654: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5654: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5654: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5654: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5654: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5654: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5654: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5654: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5660: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5660: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5660: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5660: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5660: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5660: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5666: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5666: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5666: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5666: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5666: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5666: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5666: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5666: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5666: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5666: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5666: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5666: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5666: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5666: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5666: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5666: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5666: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5666: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5666: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5666: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5666: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5666: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5666: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5666: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5666: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5666: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5672: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5672: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5672: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5672: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5672: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5672: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5672: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5672: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5672: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5672: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5672: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5672: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5672: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5672: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5672: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5672: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5672: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5672: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5672: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5672: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5678: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5678: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5678: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5678: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5678: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5678: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5684: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5684: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5684: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5684: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6814: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:6986: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:6997: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7050: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7064: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7071: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7082: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7257: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7309: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7324: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7332: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7343: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7704: Test failed: GetUpdateRect returned empty region win.c:7705: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7719: Test failed: WM_PAINT should have been received in parent win.c:7763: Test failed: GetUpdateRect returned empty region win.c:7764: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7778: Test failed: WM_PAINT should have been received in parent win.c:3333: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3334: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9723: Test failed: assigned and retrieved update regions are different win.c:9746: Test failed: wrong update region win.c:9958: Test failed: pos = 00000000 win.c:9962: Test failed: pos = 00000000 win.c:9966: Test failed: pos = 00000000 win.c:9972: Test failed: pos = 00000000 win.c:9979: Test failed: pos = 00000000 win.c:9985: Test failed: pos = 00000000 win.c:9989: Test failed: pos = 00000000 win.c:9993: Test failed: pos = 00000000 win.c:10005: Test failed: pos = 00000000 win.c:10474: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11410: Test failed: got normal pos (100,200)-(212,227) win.c:11423: Test failed: got normal pos (100,200)-(212,227) win.c:11435: Test failed: got normal pos (100,200)-(212,227) win.c:11448: Test failed: got normal pos (100,200)-(212,227) win.c:11460: Test failed: got normal pos (100,200)-(212,227) win.c:11474: Test failed: got normal pos (100,200)-(212,227) win.c:11487: Test failed: got normal pos (100,200)-(212,227) win.c:11500: Test failed: got normal pos (100,200)-(212,227) win.c:11518: Test failed: got normal pos (200,300)-(312,327) win.c:11521: Test failed: got window rect (200,300)-(312,327) win.c:11534: Test failed: got normal pos (200,300)-(312,327) win.c:11556: Test failed: got normal pos (100,200)-(212,227) win.c:11577: Test failed: got normal pos (100,200)-(212,227) win.c:11630: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11687: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11687: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11687: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11687: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11687: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11687: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11687: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11687: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11687: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11687: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11722: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11722: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11722: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11722: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11722: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11722: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11722: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11722: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11722: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11722: Test failed: hwnd 9: expected rect (-1398,189)-(-1292,213), got (-1252,189)-(-1146,213)
Report errors: user32:clipboard crashed (c0000094) user32:menu crashed (c0000094) user32:win prints too much data (36077 bytes)
=== debian10 (64 bit WoW report) ===
user32: Unhandled exception: divide by zero in 32-bit code (0x7e92b9fb). dce.c:131: Test failed: got 0 dce.c:133: Test failed: got 0 dce.c:243: Test failed: invalid clip box (0,0)-(0,0) dce.c:257: Test failed: invalid clip box (0,0)-(0,0) dce.c:277: Test failed: invalid clip box (0,0)-(0,0) dce.c:284: Test failed: invalid clip box (0,0)-(0,0) dce.c:289: Test failed: invalid clip box (0,0)-(0,0) dce.c:302: Test failed: invalid clip box (0,0)-(0,0) dce.c:323: Test failed: invalid clip box (0,0)-(0,0) dce.c:330: Test failed: invalid clip box (0,0)-(0,0) dce.c:336: Test failed: invalid clip box (0,0)-(0,0) dce.c:349: Test failed: invalid clip box (0,0)-(0,0) dce.c:400: Test failed: invalid clip box (0,0)-(0,0) dce.c:412: Test failed: invalid clip box (0,0)-(0,0) dce.c:417: Test failed: invalid clip box (0,0)-(0,0) dce.c:422: Test failed: invalid clip box (0,0)-(0,0) dce.c:451: Test failed: invalid clip box (0,0)-(0,0) dce.c:499: Test failed: invalid clip box (0,0)-(0,0) dce.c:510: Test failed: invalid clip box (-30,-20)-(-30,-20) dce.c:518: Test failed: invalid clip box (-30,-20)-(-30,-20) dce.c:529: Test failed: invalid clip box (0,0)-(0,0) edit.c:2201: Test failed: Expected: 2, got len 0 edit.c:2202: Test failed: expected "\r\n", got "" edit.c:2838: Test failed: expected 11, got 9 edit.c:2850: Test failed: expected 11, got 9 edit.c:3019: Test failed: Unexpected buffer contents input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1339: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1342: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1345: Test failed: Wrong new pos: (0,0) input.c:1279: Test failed: Wrong set pos: (0,0) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1348: Test failed: Wrong new pos: (0,0) input.c:1356: Test failed: Wrong new pos: (0,3) input.c:1359: Test failed: Wrong new pos: (0,3) input.c:1362: Test failed: Wrong new pos: (3,3) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1377: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1380: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1384: Test failed: Position changed: (0,0) input.c:1291: Test failed: Wrong hook coords: (0 0) != (150,150) input.c:1299: Test failed: GetCursorPos: (0,0) input.c:1387: Test failed: Position changed: (0,0) input.c:1398: Test failed: Wrong new pos: (0,0) input.c:1405: Test failed: Wrong new pos: (0,0) input.c:1412: Test failed: Wrong new pos: (0,0) input.c:1425: Test failed: Wrong new pos: (0,0) listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty listbox.c:287: Test failed: client rect of the listbox should be equal to the clip box,or the clip box should be empty menu.c:732: Test failed: item rectangles are not separated by 4 pixels space menu.c:735: Test failed: menu item has wrong height: 0 should be 10 menu.c:755: Test failed: columns should be 4 pixels to the left (actual 0). menu.c:759: Test failed: width of owner drawn menu item is wrong. Got 0 expected 10 menu.c:763: Test failed: Height is incorrect. Got 0 expected 10 menu.c:794: Test failed: width of owner drawn menu item is wrong. Got 0 expected 10 menu.c:798: Test failed: Height of owner drawn menu item is wrong. Got 0 expected 18 Unhandled exception: divide by zero in 32-bit code (0x0046ff71). monitor.c:259: Test failed: Expect at least one adapter found monitor.c:261: Test failed: Expect at least one monitor found monitor.c:270: Test failed: Expect success monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:428: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:432: Test failed: Invalid clip rect: (0,0)-(0,0) monitor.c:498: Test failed: couldn't get primary monitor monitor.c:530: Test failed: got primary 00000000 monitor.c:560: Test failed: GetMonitorInfo returned wrong value monitor.c:569: Test failed: GetMonitorInfo returned wrong value monitor.c:582: Test failed: GetMonitorInfo returned wrong value monitor.c:595: Test failed: GetMonitorInfo returned wrong value monitor.c:647: Test failed: Failed to find primary monitor monitor.c:652: Test failed: GetMonitorInfo error 1461 monitor.c:653: Test failed: not a primary monitor msg.c:13561: Test failed: MonitorFromPoint error 3735928559 msg.c:13566: Test failed: GetMonitorInfo error 1461 msg.c:13611: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13611: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13611: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:12007: Test failed: wrong qstatus 00090000 msg.c:12016: Test failed: wrong qstatus 00490040 msg.c:12037: Test failed: wrong qstatus 00090000 msg.c:12045: Test failed: wrong qstatus 00490040 msg.c:12056: Test failed: wrong qstatus 00090000 msg.c:12067: Test failed: wrong qstatus 00010000 msg.c:12078: Test failed: wrong qstatus 00010000 msg.c:12083: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:12086: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11203: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11214: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11228: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11238: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5403: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5414: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5425: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5429: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5434: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5435: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5438: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5447: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5450: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5451: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5452: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5488: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5498: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5715: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5725: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5876: Test failed: Expected 100, got 27 msg.c:5886: Test failed: Expected 100, got 27 msg.c:4064: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4086: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:4110: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4116: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4317: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6588: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6595: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6730: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7405: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:8075: Test failed: Update region shouldn't be empty msg.c:8080: Test failed: Update region shouldn't be empty msg.c:8108: Test failed: Update region shouldn't be empty msg.c:8109: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8111: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8133: Test failed: Update region shouldn't be empty msg.c:8134: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8136: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8163: Test failed: Update region shouldn't be empty msg.c:8164: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8166: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8176: Test failed: Update region shouldn't be empty msg.c:8177: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:8179: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8234: Test failed: Update region shouldn't be empty msg.c:8246: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8268: Test failed: Update region shouldn't be empty msg.c:8278: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8280: Test failed: Update region shouldn't be empty msg.c:8287: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8303: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8355: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8361: Test failed: Update region shouldn't be empty msg.c:8363: Test failed: Update region shouldn't be empty msg.c:8365: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8370: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8374: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8380: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8386: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8395: Test failed: Update region shouldn't be empty msg.c:8397: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8399: Test failed: Update region shouldn't be empty msg.c:8409: Test failed: Update region shouldn't be empty msg.c:8411: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8414: Test failed: Update region shouldn't be empty msg.c:8423: Test failed: Update region shouldn't be empty msg.c:8425: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8434: Test failed: Update region shouldn't be empty msg.c:8437: Test failed: Update region shouldn't be empty msg.c:8444: Test failed: Update region shouldn't be empty msg.c:8449: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8459: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8471: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8476: Test failed: Update region shouldn't be empty msg.c:8482: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8489: Test failed: Update region shouldn't be empty msg.c:8491: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8500: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8518: Test failed: Update region shouldn't be empty msg.c:8524: Test failed: Update region shouldn't be empty msg.c:8536: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8551: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8561: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8567: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8578: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8588: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8916: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9477: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9497: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9507: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11422: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11427: Test failed: WM_PAINT messages stopped msg.c:11442: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg: Timeout static.c:114: Test failed: g_nReceivedColorStatic expected 4 got 0 static.c:114: Test failed: g_nReceivedColorStatic expected 4 got 0 static.c:112: Test failed: expected 4 got 0 static.c:112: Test failed: expected 4 got 0 static.c:112: Test failed: expected 4 got 0 sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 0: wrong monitor rect (8256238,8256264)-(2123012247,88) expected (0,0)-(0,0) sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 1: wrong monitor rect (8256238,8256264)-(2123012247,88) expected (0,0)-(0,0) sysparams.c:3255: Test failed: failed to get monitor sysparams.c:3257: Test failed: GetMonitorInfoExW failed sysparams.c:3258: Test failed: 2: wrong monitor rect (8256238,8256264)-(2123012247,88) expected (0,0)-(0,0) sysparams.c:3334: Test failed: 0/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 0/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 0/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 0/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 0/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 0/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 0/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 0/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 0/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 0/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 0/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 0/2: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 1/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 1/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 1/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 1/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 1/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 1/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 1/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 1/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 1/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 1/2: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/0: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/0/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/0/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/0: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/0: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/0: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/0: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/1: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/1/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/1/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/1: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/1: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/1: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/1: PhysicalToLogicalPointForPerMonitorDPI failed sysparams.c:3334: Test failed: 2/2: wrong clip box (0,0)-(0,0) expected (0,0)-(104,0) sysparams.c:3368: Test failed: 2/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3368: Test failed: 2/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3372: Test failed: 2/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/0: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/0: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/1: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/1: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3384: Test failed: 2/2/2: wrong update region (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3388: Test failed: 2/2/2: wrong update rect (0,0)-(0,0) expected (20,20)-(25,25) sysparams.c:3403: Test failed: 2/2: wrong update region (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3407: Test failed: 2/2: wrong update rect (0,0)-(0,0) expected (50,50)-(54,-50) sysparams.c:3446: Test failed: 2/2: LogicalToPhysicalPointForPerMonitorDPI failed sysparams.c:3453: Test failed: 2/2: PhysicalToLogicalPointForPerMonitorDPI failed text.c:87: Test failed: In MM_HIENGLISH, DrawText with DT_CALCRECT should return a negative rectangle bottom. (bot=0) win.c:8330: Test failed: MonitorFromPoint error 3735928559 win.c:8335: Test failed: GetMonitorInfo error 1461 win.c:8416: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8416: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8416: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8436: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8043: Test failed: wrong window rect (100,100)-(212,127) win.c:6138: Test failed: parent client rect is empty win.c:5872: Test failed: 00CF008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5872: Test failed: 00CF008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2037: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2037: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2679: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2679: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2679: Test succeeded inside todo block: GetFocus() = 016D008E win.c:3096: Test succeeded inside todo block: Focus should be on child 000800A8, not 000800A8 win.c:7879: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4938: Test failed: pixel should be black, color is ffffffff win.c:4958: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: wrong update region win.c:5014: Test failed: wrong update region win.c:5034: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5048: Test failed: wrong update region win.c:5058: Test failed: wrong update region in excessive scroll win.c:5080: Test failed: wrong update region win.c:5089: Test failed: wrong update region win.c:5098: Test failed: wrong update region win.c:5113: Test failed: wrong update region win.c:5189: Test failed: pixel should be black, color is ffffffff win.c:5193: Test failed: pixel should be black, color is ffffffff win.c:5198: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5209: Test failed: wrong update region win.c:5220: Test failed: wrong update region win.c:1111: Test failed: window rect does not match: style:exstyle=0x14d00000:0x00000100, menu=0, win=(110,100)-(222,127), calc=(110,100)-(222,143) win.c:1118: Test failed: window rect does not match: style:exstyle=0x14d00000:0x00000100, menu=0, win=(110,100)-(222,127), calc=(110,100)-(222,143) win.c:5453: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5648: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5648: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5648: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5648: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5648: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5648: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5648: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5648: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5648: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5648: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5648: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5648: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5654: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5654: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5654: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5654: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5654: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5654: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5654: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5654: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5654: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5654: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5654: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5654: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5654: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5654: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5654: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5654: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5654: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5654: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5660: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5660: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5660: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5660: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5660: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5660: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5666: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5666: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5666: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5666: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5666: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5666: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5666: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5666: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5666: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5666: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5666: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5666: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5666: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5666: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5666: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5666: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5666: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5666: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5666: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5666: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5666: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5666: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5666: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5666: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5666: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5666: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5672: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5672: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5672: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5672: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5672: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5672: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5672: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5672: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5672: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5672: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5672: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5672: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5672: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5672: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5672: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5672: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5672: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5672: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5672: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5672: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5678: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5678: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5678: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5678: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5678: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5678: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5684: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5684: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5684: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5684: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6814: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:6986: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:6997: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7050: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7064: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7071: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7082: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7257: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7309: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7324: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7332: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7343: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7704: Test failed: GetUpdateRect returned empty region win.c:7705: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7719: Test failed: WM_PAINT should have been received in parent win.c:7763: Test failed: GetUpdateRect returned empty region win.c:7764: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7778: Test failed: WM_PAINT should have been received in parent win.c:3333: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3334: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9723: Test failed: assigned and retrieved update regions are different win.c:9746: Test failed: wrong update region win.c:9958: Test failed: pos = 00000000 win.c:9962: Test failed: pos = 00000000 win.c:9966: Test failed: pos = 00000000 win.c:9972: Test failed: pos = 00000000 win.c:9979: Test failed: pos = 00000000 win.c:9985: Test failed: pos = 00000000 win.c:9989: Test failed: pos = 00000000 win.c:9993: Test failed: pos = 00000000 win.c:10005: Test failed: pos = 00000000 win.c:10474: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10474: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10476: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10474: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10476: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10478: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11410: Test failed: got normal pos (100,200)-(212,227) win.c:11423: Test failed: got normal pos (100,200)-(212,227) win.c:11435: Test failed: got normal pos (100,200)-(212,227) win.c:11448: Test failed: got normal pos (100,200)-(212,227) win.c:11460: Test failed: got normal pos (100,200)-(212,227) win.c:11474: Test failed: got normal pos (100,200)-(212,227) win.c:11487: Test failed: got normal pos (100,200)-(212,227) win.c:11500: Test failed: got normal pos (100,200)-(212,227) win.c:11518: Test failed: got normal pos (200,300)-(312,327) win.c:11521: Test failed: got window rect (200,300)-(312,327) win.c:11534: Test failed: got normal pos (200,300)-(312,327) win.c:11556: Test failed: got normal pos (100,200)-(212,227) win.c:11577: Test failed: got normal pos (100,200)-(212,227) win.c:11630: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11630: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11658: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11687: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11687: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11687: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11687: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11687: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11687: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11687: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11687: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11687: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11687: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11722: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11722: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11722: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11722: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11722: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11722: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11722: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11722: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11722: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11722: Test failed: hwnd 9: expected rect (-1398,189)-(-1292,213), got (-1252,189)-(-1146,213)
Report errors: user32:clipboard crashed (c0000094) user32:menu crashed (c0000094) user32:win prints too much data (36077 bytes)