This patch series should fix several spurious mouse movement issues that has been reported in recent Unity Engine versions, but in other games such as Fallout 4 as well.
AFAICS the issue comes from the combination of:
1) The reconciliation that is done between relative mouse movements as received from RawMotion XInput2 events and the absolute mouse position received from MotionNotify and ButtonPress/ButtonRelease events and the order they are received in. 2) The rapid activation and deactivation of XInput2 events that happens every time the cursor clipping rectangle is reset - and several games do that on every frame.
This first implements dinput8 mouse on top of RawInput API instead of low-level mouse hooks. Then, to address 1) it makes XInput2 raw events the only source of information for the mouse RawInput messages; and to address 2) we now always listen to these events, from the desktop window thread.
The first two patches have already been sent as part of the patches implementing WM_INPUT messages for HID devices [1].
Patches 3-6 would also be re-used for the dinput8 keyboard state inconsistency issue while windows are in background - if listening to keyboard events while in background is deemed acceptable.
[1] https://www.winehq.org/pipermail/wine-devel/2019-September/151003.html
Rémi Bernon (9): server: Add send_hardware_message flags for rawinput translation. server: Implement rawinput hardware message broadcast. user32: Add __wine_send_input flags to hint raw input translation. user32: Add support for RIDEV_INPUTSINK flag in RegisterRawInputDevices. user32: Implement GetRegisteredRawInputDevices. dinput8: Add support for dinput devices that use raw input interface. dinput8: Use raw input interface for dinput8 mouse device. winex11.drv: Advertise XInput2 version 2.1 support. winex11.drv: Listen to RawMotion and RawButton* events in the desktop thread.
dlls/dinput/device_private.h | 3 + dlls/dinput/dinput_main.c | 84 +++++++++++++++++++- dlls/dinput/mouse.c | 117 ++++++++++++++++++++++++++- dlls/dinput8/tests/device.c | 23 +----- dlls/user32/input.c | 4 +- dlls/user32/rawinput.c | 64 ++++++++++++++- dlls/user32/tests/rawinput.c | 2 - dlls/user32/user32.spec | 2 +- dlls/wineandroid.drv/keyboard.c | 2 +- dlls/wineandroid.drv/window.c | 4 +- dlls/winemac.drv/ime.c | 4 +- dlls/winemac.drv/keyboard.c | 2 +- dlls/winemac.drv/mouse.c | 2 +- dlls/winex11.drv/event.c | 10 ++- dlls/winex11.drv/keyboard.c | 2 +- dlls/winex11.drv/mouse.c | 128 +++++++++++++++++------------- dlls/winex11.drv/x11drv.h | 6 +- dlls/winex11.drv/x11drv_main.c | 4 + include/winuser.h | 2 +- server/protocol.def | 9 +++ server/queue.c | 135 ++++++++++++++++++++++++++------ 21 files changed, 489 insertions(+), 120 deletions(-)
-- 2.23.0
Signed-off-by: Rémi Bernon rbernon@codeweavers.com --- server/protocol.def | 2 ++ server/queue.c | 20 ++++++++++++++------ 2 files changed, 16 insertions(+), 6 deletions(-)
diff --git a/server/protocol.def b/server/protocol.def index 6af0ae0cff8..ab3af90545b 100644 --- a/server/protocol.def +++ b/server/protocol.def @@ -2315,6 +2315,8 @@ enum message_type VARARG(keystate,bytes); /* global state array for all the keys */ @END #define SEND_HWMSG_INJECTED 0x01 +#define SEND_HWMSG_ONLY_RAW 0x02 +#define SEND_HWMSG_SKIP_RAW 0x04
/* Get a message from the current queue */ diff --git a/server/queue.c b/server/queue.c index 96587d11d1e..a18f3cdea00 100644 --- a/server/queue.c +++ b/server/queue.c @@ -1598,7 +1598,7 @@ static int send_hook_ll_message( struct desktop *desktop, struct message *hardwa
/* queue a hardware message for a mouse event */ static int queue_mouse_message( struct desktop *desktop, user_handle_t win, const hw_input_t *input, - unsigned int origin, struct msg_queue *sender ) + unsigned int origin, struct msg_queue *sender, unsigned int req_flags ) { const struct rawinput_device *device; struct hardware_msg_data *msg_data; @@ -1651,7 +1651,8 @@ static int queue_mouse_message( struct desktop *desktop, user_handle_t win, cons y = desktop->cursor.y; }
- if ((device = current->process->rawinput_mouse)) + if ((device = current->process->rawinput_mouse) && + !(req_flags & SEND_HWMSG_SKIP_RAW)) { if (!(msg = alloc_hardware_message( input->mouse.info, source, time ))) return 0; msg_data = msg->data; @@ -1670,6 +1671,9 @@ static int queue_mouse_message( struct desktop *desktop, user_handle_t win, cons queue_hardware_message( desktop, msg, 0 ); }
+ if (req_flags & SEND_HWMSG_ONLY_RAW) + return 0; + for (i = 0; i < ARRAY_SIZE( messages ); i++) { if (!messages[i]) continue; @@ -1701,7 +1705,7 @@ static int queue_mouse_message( struct desktop *desktop, user_handle_t win, cons
/* queue a hardware message for a keyboard event */ static int queue_keyboard_message( struct desktop *desktop, user_handle_t win, const hw_input_t *input, - unsigned int origin, struct msg_queue *sender ) + unsigned int origin, struct msg_queue *sender, unsigned int req_flags ) { struct hw_msg_source source = { IMDT_KEYBOARD, origin }; const struct rawinput_device *device; @@ -1777,7 +1781,8 @@ static int queue_keyboard_message( struct desktop *desktop, user_handle_t win, c break; }
- if ((device = current->process->rawinput_kbd)) + if ((device = current->process->rawinput_kbd) && + !(req_flags & SEND_HWMSG_SKIP_RAW)) { if (!(msg = alloc_hardware_message( input->kbd.info, source, time ))) return 0; msg_data = msg->data; @@ -1795,6 +1800,9 @@ static int queue_keyboard_message( struct desktop *desktop, user_handle_t win, c queue_hardware_message( desktop, msg, 0 ); }
+ if (req_flags & SEND_HWMSG_ONLY_RAW) + return 0; + if (!(msg = alloc_hardware_message( input->kbd.info, source, time ))) return 0; msg_data = msg->data;
@@ -2351,10 +2359,10 @@ DECL_HANDLER(send_hardware_message) switch (req->input.type) { case INPUT_MOUSE: - reply->wait = queue_mouse_message( desktop, req->win, &req->input, origin, sender ); + reply->wait = queue_mouse_message( desktop, req->win, &req->input, origin, sender, req->flags ); break; case INPUT_KEYBOARD: - reply->wait = queue_keyboard_message( desktop, req->win, &req->input, origin, sender ); + reply->wait = queue_keyboard_message( desktop, req->win, &req->input, origin, sender, req->flags ); break; case INPUT_HARDWARE: queue_custom_hardware_message( desktop, req->win, origin, &req->input );
We now broadcast rawinput messages to all listening processes when a driver sends input with the SEND_HWMSG_BCAST_RAW flag, instead of looking for registered rawdevices in the current process.
For now, only the foreground window thread will receive the rawinput messages.
Signed-off-by: Rémi Bernon rbernon@codeweavers.com --- server/protocol.def | 1 + server/queue.c | 95 +++++++++++++++++++++++++++++++++++---------- 2 files changed, 75 insertions(+), 21 deletions(-)
diff --git a/server/protocol.def b/server/protocol.def index ab3af90545b..3b5da8dcaed 100644 --- a/server/protocol.def +++ b/server/protocol.def @@ -2317,6 +2317,7 @@ enum message_type #define SEND_HWMSG_INJECTED 0x01 #define SEND_HWMSG_ONLY_RAW 0x02 #define SEND_HWMSG_SKIP_RAW 0x04 +#define SEND_HWMSG_BCAST_RAW 0x08
/* Get a message from the current queue */ diff --git a/server/queue.c b/server/queue.c index a18f3cdea00..d883811449e 100644 --- a/server/queue.c +++ b/server/queue.c @@ -1596,12 +1596,64 @@ static int send_hook_ll_message( struct desktop *desktop, struct message *hardwa return 1; }
+struct rawinput_message +{ + struct desktop *desktop; + struct hw_msg_source source; + unsigned int time; + struct hardware_msg_data data; +}; + +static int queue_rawinput_message( struct process* process, void* user ) +{ + const struct rawinput_message* raw_msg = user; + const struct rawinput_device *device = NULL; + struct desktop *desktop = NULL; + struct thread *thread = NULL; + struct message *msg; + + if (raw_msg->data.rawinput.type == RIM_TYPEMOUSE) + device = process->rawinput_mouse; + else if (raw_msg->data.rawinput.type == RIM_TYPEKEYBOARD) + device = process->rawinput_kbd; + + if (!device) + return 0; + + if (!(desktop = get_desktop_obj( process, process->desktop, 0 )) || + (raw_msg->desktop && desktop != raw_msg->desktop)) + goto done; + + if (!(thread = get_window_thread( device->target ? device->target : desktop->foreground_input->active )) || + process != thread->process) + goto done; + + if (thread->queue->input != desktop->foreground_input) + goto done; + + if (!(msg = alloc_hardware_message( raw_msg->data.info, raw_msg->source, raw_msg->time ))) + goto done; + + msg->win = device->target; + msg->msg = WM_INPUT; + msg->wparam = RIM_INPUT; + msg->lparam = 0; + memcpy( msg->data, &raw_msg->data, sizeof(raw_msg->data) ); + + queue_hardware_message( desktop, msg, 0 ); + +done: + if (thread) release_object( thread ); + if (desktop) release_object( desktop ); + return 0; +} + /* queue a hardware message for a mouse event */ static int queue_mouse_message( struct desktop *desktop, user_handle_t win, const hw_input_t *input, unsigned int origin, struct msg_queue *sender, unsigned int req_flags ) { - const struct rawinput_device *device; struct hardware_msg_data *msg_data; + struct rawinput_message raw_msg; struct message *msg; unsigned int i, time, flags; struct hw_msg_source source = { IMDT_MOUSE, origin }; @@ -1651,24 +1703,24 @@ static int queue_mouse_message( struct desktop *desktop, user_handle_t win, cons y = desktop->cursor.y; }
- if ((device = current->process->rawinput_mouse) && - !(req_flags & SEND_HWMSG_SKIP_RAW)) + if (!(req_flags & SEND_HWMSG_SKIP_RAW)) { - if (!(msg = alloc_hardware_message( input->mouse.info, source, time ))) return 0; - msg_data = msg->data; - - msg->win = device->target; - msg->msg = WM_INPUT; - msg->wparam = RIM_INPUT; - msg->lparam = 0; + raw_msg.desktop = desktop; + raw_msg.source = source; + raw_msg.time = time;
+ msg_data = &raw_msg.data; + msg_data->info = input->mouse.info; msg_data->flags = flags; msg_data->rawinput.type = RIM_TYPEMOUSE; msg_data->rawinput.mouse.x = x - desktop->cursor.x; msg_data->rawinput.mouse.y = y - desktop->cursor.y; msg_data->rawinput.mouse.data = input->mouse.data;
- queue_hardware_message( desktop, msg, 0 ); + if (req_flags & SEND_HWMSG_BCAST_RAW) + enum_processes( queue_rawinput_message, &raw_msg ); + else + queue_rawinput_message( current->process, &raw_msg ); }
if (req_flags & SEND_HWMSG_ONLY_RAW) @@ -1708,8 +1760,8 @@ static int queue_keyboard_message( struct desktop *desktop, user_handle_t win, c unsigned int origin, struct msg_queue *sender, unsigned int req_flags ) { struct hw_msg_source source = { IMDT_KEYBOARD, origin }; - const struct rawinput_device *device; struct hardware_msg_data *msg_data; + struct rawinput_message raw_msg; struct message *msg; unsigned char vkey = input->kbd.vkey; unsigned int message_code, time; @@ -1781,23 +1833,24 @@ static int queue_keyboard_message( struct desktop *desktop, user_handle_t win, c break; }
- if ((device = current->process->rawinput_kbd) && - !(req_flags & SEND_HWMSG_SKIP_RAW)) + if (!(req_flags & SEND_HWMSG_SKIP_RAW)) { - if (!(msg = alloc_hardware_message( input->kbd.info, source, time ))) return 0; - msg_data = msg->data; - - msg->win = device->target; - msg->msg = WM_INPUT; - msg->wparam = RIM_INPUT; + raw_msg.desktop = desktop; + raw_msg.source = source; + raw_msg.time = time;
+ msg_data = &raw_msg.data; + msg_data->info = input->kbd.info; msg_data->flags = input->kbd.flags; msg_data->rawinput.type = RIM_TYPEKEYBOARD; msg_data->rawinput.kbd.message = message_code; msg_data->rawinput.kbd.vkey = vkey; msg_data->rawinput.kbd.scan = input->kbd.scan;
- queue_hardware_message( desktop, msg, 0 ); + if (req_flags & SEND_HWMSG_BCAST_RAW) + enum_processes( queue_rawinput_message, &raw_msg ); + else + queue_rawinput_message( current->process, &raw_msg ); }
if (req_flags & SEND_HWMSG_ONLY_RAW)
Signed-off-by: Rémi Bernon rbernon@codeweavers.com --- dlls/user32/input.c | 4 ++-- dlls/user32/user32.spec | 2 +- dlls/wineandroid.drv/keyboard.c | 2 +- dlls/wineandroid.drv/window.c | 4 ++-- dlls/winemac.drv/ime.c | 4 ++-- dlls/winemac.drv/keyboard.c | 2 +- dlls/winemac.drv/mouse.c | 2 +- dlls/winex11.drv/keyboard.c | 2 +- dlls/winex11.drv/mouse.c | 8 ++++---- include/winuser.h | 2 +- 10 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/dlls/user32/input.c b/dlls/user32/input.c index 8b2ae805aa7..b023963004e 100644 --- a/dlls/user32/input.c +++ b/dlls/user32/input.c @@ -122,9 +122,9 @@ BOOL set_capture_window( HWND hwnd, UINT gui_flags, HWND *prev_ret ) * * Internal SendInput function to allow the graphics driver to inject real events. */ -BOOL CDECL __wine_send_input( HWND hwnd, const INPUT *input ) +BOOL CDECL __wine_send_input( HWND hwnd, const INPUT *input, UINT flags ) { - NTSTATUS status = send_hardware_message( hwnd, input, 0 ); + NTSTATUS status = send_hardware_message( hwnd, input, flags ); if (status) SetLastError( RtlNtStatusToDosError(status) ); return !status; } diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index f9a4ae26df4..3b934dc4057 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -832,5 +832,5 @@ # All functions must be prefixed with '__wine_' (for internal functions) # or 'wine_' (for user-visible functions) to avoid namespace conflicts. # -@ cdecl __wine_send_input(long ptr) +@ cdecl __wine_send_input(long ptr long) @ cdecl __wine_set_pixel_format(long long) diff --git a/dlls/wineandroid.drv/keyboard.c b/dlls/wineandroid.drv/keyboard.c index 2c37c42e0d4..8400414b8d4 100644 --- a/dlls/wineandroid.drv/keyboard.c +++ b/dlls/wineandroid.drv/keyboard.c @@ -680,7 +680,7 @@ static void send_keyboard_input( HWND hwnd, WORD vkey, WORD scan, DWORD flags ) input.u.ki.time = 0; input.u.ki.dwExtraInfo = 0;
- __wine_send_input( hwnd, &input ); + __wine_send_input( hwnd, &input, 0 ); }
/*********************************************************************** diff --git a/dlls/wineandroid.drv/window.c b/dlls/wineandroid.drv/window.c index eb05aaf2832..e95fb481972 100644 --- a/dlls/wineandroid.drv/window.c +++ b/dlls/wineandroid.drv/window.c @@ -521,7 +521,7 @@ static int process_events( DWORD mask ) } SERVER_END_REQ; } - __wine_send_input( capture ? capture : event->data.motion.hwnd, &event->data.motion.input ); + __wine_send_input( capture ? capture : event->data.motion.hwnd, &event->data.motion.input, 0 ); } break;
@@ -535,7 +535,7 @@ static int process_events( DWORD mask ) event->data.kbd.input.u.ki.wVk, event->data.kbd.input.u.ki.wVk, event->data.kbd.input.u.ki.wScan ); update_keyboard_lock_state( event->data.kbd.input.u.ki.wVk, event->data.kbd.lock_state ); - __wine_send_input( 0, &event->data.kbd.input ); + __wine_send_input( 0, &event->data.kbd.input, 0 ); break;
default: diff --git a/dlls/winemac.drv/ime.c b/dlls/winemac.drv/ime.c index dabe6654f98..69c85a07842 100644 --- a/dlls/winemac.drv/ime.c +++ b/dlls/winemac.drv/ime.c @@ -1427,10 +1427,10 @@ void macdrv_im_set_text(const macdrv_event *event) { input.ki.wScan = chars[i]; input.ki.dwFlags = KEYEVENTF_UNICODE; - __wine_send_input(hwnd, &input); + __wine_send_input(hwnd, &input, 0);
input.ki.dwFlags = KEYEVENTF_UNICODE | KEYEVENTF_KEYUP; - __wine_send_input(hwnd, &input); + __wine_send_input(hwnd, &input, 0); } }
diff --git a/dlls/winemac.drv/keyboard.c b/dlls/winemac.drv/keyboard.c index aed4ff0d6e4..39230c0809d 100644 --- a/dlls/winemac.drv/keyboard.c +++ b/dlls/winemac.drv/keyboard.c @@ -929,7 +929,7 @@ static void macdrv_send_keyboard_input(HWND hwnd, WORD vkey, WORD scan, DWORD fl input.ki.time = time; input.ki.dwExtraInfo = 0;
- __wine_send_input(hwnd, &input); + __wine_send_input(hwnd, &input, 0); }
diff --git a/dlls/winemac.drv/mouse.c b/dlls/winemac.drv/mouse.c index dd6443fe1ba..b510b512fc3 100644 --- a/dlls/winemac.drv/mouse.c +++ b/dlls/winemac.drv/mouse.c @@ -165,7 +165,7 @@ static void send_mouse_input(HWND hwnd, macdrv_window cocoa_window, UINT flags, input.mi.time = time; input.mi.dwExtraInfo = 0;
- __wine_send_input(top_level_hwnd, &input); + __wine_send_input(top_level_hwnd, &input, 0); }
diff --git a/dlls/winex11.drv/keyboard.c b/dlls/winex11.drv/keyboard.c index 131c5f5442f..61a2881e60c 100644 --- a/dlls/winex11.drv/keyboard.c +++ b/dlls/winex11.drv/keyboard.c @@ -1148,7 +1148,7 @@ static void X11DRV_send_keyboard_input( HWND hwnd, WORD vkey, WORD scan, DWORD f input.u.ki.time = time; input.u.ki.dwExtraInfo = 0;
- __wine_send_input( hwnd, &input ); + __wine_send_input( hwnd, &input, 0 ); }
diff --git a/dlls/winex11.drv/mouse.c b/dlls/winex11.drv/mouse.c index 8d1dc5e35d7..cedb488614d 100644 --- a/dlls/winex11.drv/mouse.c +++ b/dlls/winex11.drv/mouse.c @@ -612,7 +612,7 @@ static void send_mouse_input( HWND hwnd, Window window, unsigned int state, INPU } input->u.mi.dx += clip_rect.left; input->u.mi.dy += clip_rect.top; - __wine_send_input( hwnd, input ); + __wine_send_input( hwnd, input, 0 ); return; }
@@ -673,7 +673,7 @@ static void send_mouse_input( HWND hwnd, Window window, unsigned int state, INPU
input->u.mi.dx = pt.x; input->u.mi.dy = pt.y; - __wine_send_input( hwnd, input ); + __wine_send_input( hwnd, input, 0 ); }
#ifdef SONAME_LIBXCURSOR @@ -1619,7 +1619,7 @@ void move_resize_window( HWND hwnd, int dir ) input.u.mi.dwFlags = button_up_flags[button - 1] | MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_MOVE; input.u.mi.time = GetTickCount(); input.u.mi.dwExtraInfo = 0; - __wine_send_input( hwnd, &input ); + __wine_send_input( hwnd, &input, 0 ); }
while (PeekMessageW( &msg, 0, 0, 0, PM_REMOVE )) @@ -1846,7 +1846,7 @@ static BOOL X11DRV_RawMotion( XGenericEventCookie *xev ) TRACE( "pos %d,%d (event %f,%f)\n", input.u.mi.dx, input.u.mi.dy, dx, dy );
input.type = INPUT_MOUSE; - __wine_send_input( 0, &input ); + __wine_send_input( 0, &input, 0 ); return TRUE; }
diff --git a/include/winuser.h b/include/winuser.h index 51c73d25c2f..10cebfa97d0 100644 --- a/include/winuser.h +++ b/include/winuser.h @@ -4389,7 +4389,7 @@ static inline BOOL WINAPI SetRectEmpty(LPRECT rect) WORD WINAPI SYSTEM_KillSystemTimer( WORD );
#ifdef __WINESRC__ -WINUSERAPI BOOL CDECL __wine_send_input( HWND hwnd, const INPUT *input ); +WINUSERAPI BOOL CDECL __wine_send_input( HWND hwnd, const INPUT *input, UINT flags ); #endif
#ifdef __cplusplus
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=56918
Your paranoid android.
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5142: Test succeeded inside todo block: ShowWindow(SW_RESTORE):overlapped: marked "todo_wine" but succeeds msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
This flag allows applications to receive rawinput messages while in background. They have to specify a target hwnd in which queue to receive them and the messages will carry a RIM_INPUTSINK wparam in this case.
Signed-off-by: Rémi Bernon rbernon@codeweavers.com --- dlls/user32/rawinput.c | 9 ++++++++- dlls/user32/tests/rawinput.c | 2 -- server/queue.c | 8 ++++++-- 3 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/dlls/user32/rawinput.c b/dlls/user32/rawinput.c index 94cf7a9a5d2..182ee1e9eb7 100644 --- a/dlls/user32/rawinput.c +++ b/dlls/user32/rawinput.c @@ -267,6 +267,13 @@ BOOL WINAPI DECLSPEC_HOTPATCH RegisterRawInputDevices(RAWINPUTDEVICE *devices, U
for (i = 0; i < device_count; ++i) { + if ((devices[i].dwFlags & RIDEV_INPUTSINK) && + (devices[i].hwndTarget == NULL)) + { + SetLastError(ERROR_INVALID_PARAMETER); + return FALSE; + } + if ((devices[i].dwFlags & RIDEV_REMOVE) && (devices[i].hwndTarget != NULL)) { @@ -282,7 +289,7 @@ BOOL WINAPI DECLSPEC_HOTPATCH RegisterRawInputDevices(RAWINPUTDEVICE *devices, U TRACE("device %u: page %#x, usage %#x, flags %#x, target %p.\n", i, devices[i].usUsagePage, devices[i].usUsage, devices[i].dwFlags, devices[i].hwndTarget); - if (devices[i].dwFlags & ~RIDEV_REMOVE) + if (devices[i].dwFlags & ~(RIDEV_REMOVE|RIDEV_INPUTSINK)) FIXME("Unhandled flags %#x for device %u.\n", devices[i].dwFlags, i);
d[i].usage_page = devices[i].usUsagePage; diff --git a/dlls/user32/tests/rawinput.c b/dlls/user32/tests/rawinput.c index f4c8eb6738b..3e459a53940 100644 --- a/dlls/user32/tests/rawinput.c +++ b/dlls/user32/tests/rawinput.c @@ -80,9 +80,7 @@ static void test_RegisterRawInputDevices(void)
SetLastError(0xdeadbeef); res = RegisterRawInputDevices(raw_devices, ARRAY_SIZE(raw_devices), sizeof(RAWINPUTDEVICE)); - todo_wine ok(res == FALSE, "RegisterRawInputDevices failed\n"); - todo_wine ok(GetLastError() == ERROR_INVALID_PARAMETER, "RegisterRawInputDevices returned %08x\n", GetLastError());
raw_devices[0].hwndTarget = hwnd; diff --git a/server/queue.c b/server/queue.c index d883811449e..5b557caa93b 100644 --- a/server/queue.c +++ b/server/queue.c @@ -1611,6 +1611,7 @@ static int queue_rawinput_message( struct process* process, void* user ) struct desktop *desktop = NULL; struct thread *thread = NULL; struct message *msg; + int wparam = RIM_INPUT;
if (raw_msg->data.rawinput.type == RIM_TYPEMOUSE) device = process->rawinput_mouse; @@ -1629,14 +1630,17 @@ static int queue_rawinput_message( struct process* process, void* user ) goto done;
if (thread->queue->input != desktop->foreground_input) - goto done; + { + if (!(device->flags & RIDEV_INPUTSINK)) goto done; + wparam = RIM_INPUTSINK; + }
if (!(msg = alloc_hardware_message( raw_msg->data.info, raw_msg->source, raw_msg->time ))) goto done;
msg->win = device->target; msg->msg = WM_INPUT; - msg->wparam = RIM_INPUT; + msg->wparam = wparam; msg->lparam = 0; memcpy( msg->data, &raw_msg->data, sizeof(raw_msg->data) );
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=56919
Your paranoid android.
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
Signed-off-by: Rémi Bernon rbernon@codeweavers.com --- dlls/dinput8/tests/device.c | 13 --------- dlls/user32/rawinput.c | 55 +++++++++++++++++++++++++++++++++++-- server/protocol.def | 6 ++++ server/queue.c | 24 ++++++++++++++++ 4 files changed, 83 insertions(+), 15 deletions(-)
diff --git a/dlls/dinput8/tests/device.c b/dlls/dinput8/tests/device.c index f3e7b542355..72a59878d8a 100644 --- a/dlls/dinput8/tests/device.c +++ b/dlls/dinput8/tests/device.c @@ -602,7 +602,6 @@ static void test_mouse_keyboard(void)
raw_devices_count = ARRAY_SIZE(raw_devices); GetRegisteredRawInputDevices(NULL, &raw_devices_count, sizeof(RAWINPUTDEVICE)); - todo_wine ok(raw_devices_count == 0, "Unexpected raw devices registered: %d\n", raw_devices_count);
hr = IDirectInputDevice8_Acquire(di_keyboard); @@ -624,7 +623,6 @@ static void test_mouse_keyboard(void) ok(SUCCEEDED(hr), "IDirectInputDevice8_Acquire failed: %08x\n", hr); raw_devices_count = ARRAY_SIZE(raw_devices); GetRegisteredRawInputDevices(NULL, &raw_devices_count, sizeof(RAWINPUTDEVICE)); - todo_wine ok(raw_devices_count == 0, "Unexpected raw devices registered: %d\n", raw_devices_count);
if (raw_devices[0].hwndTarget != NULL) @@ -662,7 +660,6 @@ static void test_mouse_keyboard(void) ok(SUCCEEDED(hr), "IDirectInputDevice8_Acquire failed: %08x\n", hr); raw_devices_count = ARRAY_SIZE(raw_devices); GetRegisteredRawInputDevices(NULL, &raw_devices_count, sizeof(RAWINPUTDEVICE)); - todo_wine ok(raw_devices_count == 0, "Unexpected raw devices registered: %d\n", raw_devices_count);
/* expect dinput8 to take over any activated raw input devices */ @@ -689,26 +686,18 @@ static void test_mouse_keyboard(void) raw_devices_count = ARRAY_SIZE(raw_devices); memset(raw_devices, 0, sizeof(raw_devices)); hr = GetRegisteredRawInputDevices(raw_devices, &raw_devices_count, sizeof(RAWINPUTDEVICE)); - todo_wine ok(hr == 3, "GetRegisteredRawInputDevices returned %d, raw_devices_count: %d\n", hr, raw_devices_count); - todo_wine ok(raw_devices[0].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[0].usUsagePage); - todo_wine ok(raw_devices[0].usUsage == 2, "Unexpected raw device usage: %x\n", raw_devices[0].usUsage); todo_wine ok(raw_devices[0].dwFlags == RIDEV_INPUTSINK, "Unexpected raw device flags: %x\n", raw_devices[0].dwFlags); todo_wine ok(raw_devices[0].hwndTarget == di_hwnd, "Unexpected raw device target: %p\n", raw_devices[0].hwndTarget); - todo_wine ok(raw_devices[1].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[1].usUsagePage); - todo_wine ok(raw_devices[1].usUsage == 5, "Unexpected raw device usage: %x\n", raw_devices[1].usUsage); ok(raw_devices[1].dwFlags == 0, "Unexpected raw device flags: %x\n", raw_devices[1].dwFlags); - todo_wine ok(raw_devices[1].hwndTarget == hwnd, "Unexpected raw device target: %p\n", raw_devices[1].hwndTarget); - todo_wine ok(raw_devices[2].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[1].usUsagePage); - todo_wine ok(raw_devices[2].usUsage == 6, "Unexpected raw device usage: %x\n", raw_devices[1].usUsage); todo_wine ok(raw_devices[2].dwFlags == RIDEV_INPUTSINK, "Unexpected raw device flags: %x\n", raw_devices[1].dwFlags); @@ -727,12 +716,10 @@ static void test_mouse_keyboard(void) hr = GetRegisteredRawInputDevices(raw_devices, &raw_devices_count, sizeof(RAWINPUTDEVICE)); todo_wine ok(hr == 1, "GetRegisteredRawInputDevices returned %d, raw_devices_count: %d\n", hr, raw_devices_count); - todo_wine ok(raw_devices[0].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[0].usUsagePage); todo_wine ok(raw_devices[0].usUsage == 5, "Unexpected raw device usage: %x\n", raw_devices[0].usUsage); ok(raw_devices[0].dwFlags == 0, "Unexpected raw device flags: %x\n", raw_devices[0].dwFlags); - todo_wine ok(raw_devices[0].hwndTarget == hwnd, "Unexpected raw device target: %p\n", raw_devices[0].hwndTarget);
IDirectInputDevice8_Release(di_mouse); diff --git a/dlls/user32/rawinput.c b/dlls/user32/rawinput.c index 182ee1e9eb7..e279ca2f06d 100644 --- a/dlls/user32/rawinput.c +++ b/dlls/user32/rawinput.c @@ -487,14 +487,65 @@ UINT WINAPI GetRawInputDeviceInfoW(HANDLE device, UINT command, void *data, UINT return s; }
+static int compare_raw_input_devices(const void *ap, const void *bp) +{ + const RAWINPUTDEVICE a = *(const RAWINPUTDEVICE *)ap; + const RAWINPUTDEVICE b = *(const RAWINPUTDEVICE *)bp; + + if (a.usUsagePage != b.usUsagePage) return a.usUsagePage - b.usUsagePage; + if (a.usUsage != b.usUsage) return a.usUsage - b.usUsage; + return 0; +} + /*********************************************************************** * GetRegisteredRawInputDevices (USER32.@) */ UINT WINAPI DECLSPEC_HOTPATCH GetRegisteredRawInputDevices(RAWINPUTDEVICE *devices, UINT *device_count, UINT size) { - FIXME("devices %p, device_count %p, size %u stub!\n", devices, device_count, size); + struct rawinput_device *d = NULL; + unsigned int count = ~0U;
- return 0; + TRACE("devices %p, device_count %p, size %u\n", devices, device_count, size); + + if (!device_count) + { + SetLastError(ERROR_INVALID_PARAMETER); + return ~0U; + } + + if (devices && !(d = HeapAlloc( GetProcessHeap(), 0, *device_count * sizeof(*d) ))) + return ~0U; + + SERVER_START_REQ( get_rawinput_devices ) + { + if (d) + wine_server_set_reply( req, d, *device_count * sizeof(*d) ); + + if (wine_server_call( req )) + goto done; + + if (!d || reply->device_count > *device_count) + { + *device_count = reply->device_count; + SetLastError( ERROR_INSUFFICIENT_BUFFER ); + goto done; + } + + for (count = 0; count < reply->device_count; ++count) + { + devices[count].usUsagePage = d[count].usage_page; + devices[count].usUsage = d[count].usage; + devices[count].dwFlags = d[count].flags; + devices[count].hwndTarget = wine_server_ptr_handle(d[count].target); + } + } + SERVER_END_REQ; + + qsort(devices, count, sizeof(*devices), compare_raw_input_devices); + +done: + if (d) HeapFree( GetProcessHeap(), 0, d ); + return count; }
diff --git a/server/protocol.def b/server/protocol.def index 3b5da8dcaed..7854e31b2b1 100644 --- a/server/protocol.def +++ b/server/protocol.def @@ -3867,6 +3867,12 @@ struct handle_info VARARG(devices,rawinput_devices); @END
+/* Retrieve the list of registered rawinput devices */ +@REQ(get_rawinput_devices) +@REPLY + unsigned int device_count; + VARARG(devices,rawinput_devices); +@END
/* Retrieve the suspended context of a thread */ @REQ(get_suspend_context) diff --git a/server/queue.c b/server/queue.c index 5b557caa93b..31294ea7c17 100644 --- a/server/queue.c +++ b/server/queue.c @@ -3188,3 +3188,27 @@ DECL_HANDLER(update_rawinput_devices) e = find_rawinput_device( 1, 6 ); current->process->rawinput_kbd = e ? &e->device : NULL; } + +DECL_HANDLER(get_rawinput_devices) +{ + unsigned int device_count = list_count(¤t->process->rawinput_devices); + struct rawinput_device *devices; + struct rawinput_device_entry *e; + unsigned int i; + + reply->device_count = device_count; + if (get_reply_max_size() / sizeof (*devices) < device_count) + return; + + if (!(devices = mem_alloc( device_count * sizeof (*devices) ))) + { + set_error( STATUS_NO_MEMORY ); + return; + } + + i = 0; + LIST_FOR_EACH_ENTRY( e, ¤t->process->rawinput_devices, struct rawinput_device_entry, entry ) + devices[i++] = e->device; + + set_reply_data_ptr( devices, device_count * sizeof (*devices) ); +}
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=56920
Your paranoid android.
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
This adds a global message window that will receive WM_INPUT messages, dispatched to every raw input device event_proc.
Devices that use raw input interface will not register low-level hooks anymore. They will also conflict with any raw input device registered outside of dinput, as exposed by the unit tests.
Signed-off-by: Rémi Bernon rbernon@codeweavers.com --- dlls/dinput/device_private.h | 3 ++ dlls/dinput/dinput_main.c | 84 +++++++++++++++++++++++++++++++++++- 2 files changed, 86 insertions(+), 1 deletion(-)
diff --git a/dlls/dinput/device_private.h b/dlls/dinput/device_private.h index 27e9c262869..8d4d6a0b5bf 100644 --- a/dlls/dinput/device_private.h +++ b/dlls/dinput/device_private.h @@ -70,6 +70,9 @@ struct IDirectInputDeviceImpl int acquired; DI_EVENT_PROC event_proc; /* function to receive mouse & keyboard events */
+ BOOL use_raw_input; /* use raw input instead of low-level messages */ + RAWINPUTDEVICE raw_device; /* raw device to (un)register */ + LPDIDEVICEOBJECTDATA data_queue; /* buffer for 'GetDeviceData'. */ int queue_len; /* size of the queue - set in 'SetProperty' */ int queue_head; /* position to write new event into queue */ diff --git a/dlls/dinput/dinput_main.c b/dlls/dinput/dinput_main.c index 0855cb41cd5..fc001d77d83 100644 --- a/dlls/dinput/dinput_main.c +++ b/dlls/dinput/dinput_main.c @@ -97,6 +97,10 @@ static const struct dinput_device *dinput_devices[] =
HINSTANCE DINPUT_instance;
+static ATOM di_em_win_class; +static const WCHAR di_em_winW[] = {'D','I','E','m','W','i','n',0}; +static HWND di_em_win; + static BOOL check_hook_thread(void); static CRITICAL_SECTION dinput_hook_crit; static struct list direct_input_list = LIST_INIT( direct_input_list ); @@ -611,6 +615,59 @@ static HRESULT WINAPI IDirectInputWImpl_QueryInterface(LPDIRECTINPUT7W iface, RE return IDirectInputAImpl_QueryInterface( &This->IDirectInput7A_iface, riid, ppobj ); }
+static LRESULT WINAPI di_em_win_wndproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) +{ + IDirectInputImpl *dinput; + + TRACE( "%p %d %lx %lx\n", hwnd, msg, wparam, lparam ); + + if (msg == WM_INPUT) + { + EnterCriticalSection( &dinput_hook_crit ); + LIST_FOR_EACH_ENTRY( dinput, &direct_input_list, IDirectInputImpl, entry ) + { + IDirectInputDeviceImpl *dev; + + EnterCriticalSection( &dinput->crit ); + LIST_FOR_EACH_ENTRY( dev, &dinput->devices_list, IDirectInputDeviceImpl, entry ) + { + if (dev->acquired && dev->event_proc && dev->use_raw_input) + { + TRACE("calling %p->%p (%lx %lx)\n", dev, dev->event_proc, wparam, lparam); + dev->event_proc( &dev->IDirectInputDevice8A_iface, GET_RAWINPUT_CODE_WPARAM(wparam), lparam ); + } + } + LeaveCriticalSection( &dinput->crit ); + } + LeaveCriticalSection( &dinput_hook_crit ); + } + + return DefWindowProcW(hwnd, msg, wparam, lparam); +} + +static void register_di_em_win_class(void) +{ + static WNDCLASSEXW class; + + ZeroMemory(&class, sizeof(class)); + class.cbSize = sizeof(class); + class.lpfnWndProc = di_em_win_wndproc; + class.hInstance = DINPUT_instance; + class.lpszClassName = di_em_winW; + + if (!(di_em_win_class = RegisterClassExW( &class ))) + WARN( "Unable to register message window class\n" ); +} + +static void unregister_di_em_win_class(void) +{ + if (!di_em_win_class) + return; + + if (!UnregisterClassW( MAKEINTRESOURCEW( di_em_win_class ), DINPUT_instance )) + WARN( "Unable to unregister message window class\n" ); +} + static HRESULT initialize_directinput_instance(IDirectInputImpl *This, DWORD dwVersion) { if (!This->initialized) @@ -1706,6 +1763,9 @@ static DWORD WINAPI hook_thread_proc(void *param) static HHOOK kbd_hook, mouse_hook; MSG msg;
+ di_em_win = CreateWindowW( MAKEINTRESOURCEW(di_em_win_class), di_em_winW, + 0, 0, 0, 0, 0, HWND_MESSAGE, 0, DINPUT_instance, NULL ); + /* Force creation of the message queue */ PeekMessageW( &msg, 0, 0, 0, PM_NOREMOVE ); SetEvent(param); @@ -1738,7 +1798,7 @@ static DWORD WINAPI hook_thread_proc(void *param) EnterCriticalSection( &dinput->crit ); LIST_FOR_EACH_ENTRY( dev, &dinput->devices_list, IDirectInputDeviceImpl, entry ) { - if (!dev->acquired || !dev->event_proc) continue; + if (!dev->acquired || !dev->event_proc || dev->use_raw_input) continue;
if (IsEqualGUID( &dev->guid, &GUID_SysKeyboard )) kbd_cnt++; @@ -1770,6 +1830,9 @@ static DWORD WINAPI hook_thread_proc(void *param) DispatchMessageW(&msg); }
+ DestroyWindow( di_em_win ); + di_em_win = NULL; + FreeLibraryAndExitThread(DINPUT_instance, 0); }
@@ -1851,6 +1914,23 @@ void check_dinput_hooks(LPDIRECTINPUTDEVICE8W iface, BOOL acquired) hook_thread_event = NULL; }
+ if (dev->use_raw_input) + { + if (acquired) + { + dev->raw_device.dwFlags = RIDEV_INPUTSINK; + dev->raw_device.hwndTarget = di_em_win; + } + else + { + dev->raw_device.dwFlags = RIDEV_REMOVE; + dev->raw_device.hwndTarget = NULL; + } + + if (!RegisterRawInputDevices( &dev->raw_device, 1, sizeof(RAWINPUTDEVICE) )) + WARN( "Unable to (un)register raw device %x:%x\n", dev->raw_device.usUsagePage, dev->raw_device.usUsage ); + } + PostThreadMessageW( hook_thread_id, WM_USER+0x10, 1, 0 );
LeaveCriticalSection(&dinput_hook_crit); @@ -1877,9 +1957,11 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved) case DLL_PROCESS_ATTACH: DisableThreadLibraryCalls(inst); DINPUT_instance = inst; + register_di_em_win_class(); break; case DLL_PROCESS_DETACH: if (reserved) break; + unregister_di_em_win_class(); DeleteCriticalSection(&dinput_hook_crit); break; }
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=56921
Your paranoid android.
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8716: Test failed: WaitForSingleObject failed 102 msg.c:8722: Test failed: destroy child on thread exit: 0: the msg sequence is not complete: expected 0082 - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 01FD0090 msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 01FD0090 msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 0089008A win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 0089008A win.c:2720: Test succeeded inside todo block: GetFocus() = 0089008A win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
Signed-off-by: Rémi Bernon rbernon@codeweavers.com --- dlls/dinput/mouse.c | 117 +++++++++++++++++++++++++++++++++++- dlls/dinput8/tests/device.c | 10 +-- 2 files changed, 119 insertions(+), 8 deletions(-)
diff --git a/dlls/dinput/mouse.c b/dlls/dinput/mouse.c index 52a766b2a1a..a94fff0670b 100644 --- a/dlls/dinput/mouse.c +++ b/dlls/dinput/mouse.c @@ -246,6 +246,13 @@ static SysMouseImpl *alloc_device(REFGUID rguid, IDirectInputImpl *dinput) list_add_tail(&dinput->devices_list, &newDevice->base.entry); LeaveCriticalSection(&dinput->crit);
+ if (dinput->dwVersion >= 0x0800) + { + newDevice->base.use_raw_input = TRUE; + newDevice->base.raw_device.usUsagePage = 1; /* HID generic device page */ + newDevice->base.raw_device.usUsage = 2; /* HID generic mouse */ + } + return newDevice;
failed: @@ -318,7 +325,115 @@ static int dinput_mouse_hook( LPDIRECTINPUTDEVICE8A iface, WPARAM wparam, LPARAM { MSLLHOOKSTRUCT *hook = (MSLLHOOKSTRUCT *)lparam; SysMouseImpl* This = impl_from_IDirectInputDevice8A(iface); - int wdata = 0, inst_id = -1, ret = 0; + int wdata = 0, inst_id = -1, ret = 0, i; + + if (wparam == RIM_INPUT || wparam == RIM_INPUTSINK) + { + RAWINPUTHEADER raw_header; + RAWINPUT raw_input; + UINT size; + POINT rel, pt; + + static const USHORT mouse_button_flags[] = + { + RI_MOUSE_BUTTON_1_DOWN, RI_MOUSE_BUTTON_1_UP, + RI_MOUSE_BUTTON_2_DOWN, RI_MOUSE_BUTTON_2_UP, + RI_MOUSE_BUTTON_3_DOWN, RI_MOUSE_BUTTON_3_UP, + RI_MOUSE_BUTTON_4_DOWN, RI_MOUSE_BUTTON_4_UP, + RI_MOUSE_BUTTON_5_DOWN, RI_MOUSE_BUTTON_5_UP + }; + + TRACE("(%p) wp %08lx, lp %08lx\n", iface, wparam, lparam); + + size = sizeof(raw_header); + if (GetRawInputData( (HRAWINPUT)lparam, RID_HEADER, &raw_header, &size, sizeof(RAWINPUTHEADER) ) != sizeof(raw_header)) + { + WARN( "Unable to read raw input data header\n" ); + return 0; + } + + if (raw_header.dwType != RIM_TYPEMOUSE) + return 0; + + if (raw_header.dwSize > sizeof(raw_input)) + { + WARN( "Unexpected size for mouse raw input data\n" ); + return 0; + } + + size = raw_header.dwSize; + if (GetRawInputData( (HRAWINPUT)lparam, RID_INPUT, &raw_input, &size, sizeof(RAWINPUTHEADER) ) != raw_header.dwSize ) + { + WARN( "Unable to read raw input data\n" ); + return 0; + } + + if (raw_input.data.mouse.usFlags & MOUSE_VIRTUAL_DESKTOP) + FIXME( "Unimplemented MOUSE_VIRTUAL_DESKTOP flag\n" ); + if (raw_input.data.mouse.usFlags & MOUSE_ATTRIBUTES_CHANGED) + FIXME( "Unimplemented MOUSE_ATTRIBUTES_CHANGED flag\n" ); + + EnterCriticalSection(&This->base.crit); + + rel.x = raw_input.data.mouse.lLastX; + rel.y = raw_input.data.mouse.lLastY; + if (raw_input.data.mouse.usFlags & MOUSE_MOVE_ABSOLUTE) + { + GetCursorPos(&pt); + rel.x -= pt.x; + rel.y -= pt.y; + } + + This->m_state.lX += rel.x; + This->m_state.lY += rel.y; + + if (This->base.data_format.user_df->dwFlags & DIDF_ABSAXIS) + { + pt.x = This->m_state.lX; + pt.y = This->m_state.lY; + } + else + { + pt = rel; + } + + if (rel.x) + queue_event(iface, DIDFT_MAKEINSTANCE(WINE_MOUSE_X_AXIS_INSTANCE) | DIDFT_RELAXIS, + pt.x, GetCurrentTime(), This->base.dinput->evsequence); + + if (rel.y) + queue_event(iface, DIDFT_MAKEINSTANCE(WINE_MOUSE_Y_AXIS_INSTANCE) | DIDFT_RELAXIS, + pt.y, GetCurrentTime(), This->base.dinput->evsequence); + + if (rel.x || rel.y) + { + if ((This->warp_override == WARP_FORCE_ON) || + (This->warp_override != WARP_DISABLE && (This->base.dwCoopLevel & DISCL_EXCLUSIVE))) + This->need_warp = TRUE; + } + + if (raw_input.data.mouse.usButtonFlags & RI_MOUSE_WHEEL) + { + This->m_state.lZ += (wdata = (SHORT)raw_input.data.mouse.usButtonData); + queue_event(iface, DIDFT_MAKEINSTANCE(WINE_MOUSE_Z_AXIS_INSTANCE) | DIDFT_RELAXIS, + wdata, GetCurrentTime(), This->base.dinput->evsequence); + ret = This->clipped; + } + + for (i = 0; i < ARRAY_SIZE(mouse_button_flags); ++i) + { + if (raw_input.data.mouse.usButtonFlags & mouse_button_flags[i]) + { + This->m_state.rgbButtons[i / 2] = 0x80 - (i % 2) * 0x80; + queue_event(iface, DIDFT_MAKEINSTANCE(WINE_MOUSE_BUTTONS_INSTANCE + (i / 2)) | DIDFT_PSHBUTTON, + This->m_state.rgbButtons[i / 2], GetCurrentTime(), This->base.dinput->evsequence); + } + } + + LeaveCriticalSection(&This->base.crit); + + return ret; + }
TRACE("msg %lx @ (%d %d)\n", wparam, hook->pt.x, hook->pt.y);
diff --git a/dlls/dinput8/tests/device.c b/dlls/dinput8/tests/device.c index 72a59878d8a..2aadf5ddf9b 100644 --- a/dlls/dinput8/tests/device.c +++ b/dlls/dinput8/tests/device.c @@ -646,13 +646,9 @@ static void test_mouse_keyboard(void) raw_devices_count = ARRAY_SIZE(raw_devices); memset(raw_devices, 0, sizeof(raw_devices)); hr = GetRegisteredRawInputDevices(raw_devices, &raw_devices_count, sizeof(RAWINPUTDEVICE)); - todo_wine ok(hr == 1, "GetRegisteredRawInputDevices returned %d, raw_devices_count: %d\n", hr, raw_devices_count); - todo_wine ok(raw_devices[0].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[0].usUsagePage); - todo_wine ok(raw_devices[0].usUsage == 2, "Unexpected raw device usage: %x\n", raw_devices[0].usUsage); - todo_wine ok(raw_devices[0].dwFlags == RIDEV_INPUTSINK, "Unexpected raw device flags: %x\n", raw_devices[0].dwFlags); todo_wine ok(raw_devices[0].hwndTarget == di_hwnd, "Unexpected raw device target: %p\n", raw_devices[0].hwndTarget); @@ -662,6 +658,9 @@ static void test_mouse_keyboard(void) GetRegisteredRawInputDevices(NULL, &raw_devices_count, sizeof(RAWINPUTDEVICE)); ok(raw_devices_count == 0, "Unexpected raw devices registered: %d\n", raw_devices_count);
+ if (raw_devices[0].hwndTarget != NULL) + di_hwnd = raw_devices[0].hwndTarget; + /* expect dinput8 to take over any activated raw input devices */ raw_devices[0].usUsagePage = 0x01; raw_devices[0].usUsage = 0x05; @@ -689,9 +688,7 @@ static void test_mouse_keyboard(void) ok(hr == 3, "GetRegisteredRawInputDevices returned %d, raw_devices_count: %d\n", hr, raw_devices_count); ok(raw_devices[0].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[0].usUsagePage); ok(raw_devices[0].usUsage == 2, "Unexpected raw device usage: %x\n", raw_devices[0].usUsage); - todo_wine ok(raw_devices[0].dwFlags == RIDEV_INPUTSINK, "Unexpected raw device flags: %x\n", raw_devices[0].dwFlags); - todo_wine ok(raw_devices[0].hwndTarget == di_hwnd, "Unexpected raw device target: %p\n", raw_devices[0].hwndTarget); ok(raw_devices[1].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[1].usUsagePage); ok(raw_devices[1].usUsage == 5, "Unexpected raw device usage: %x\n", raw_devices[1].usUsage); @@ -717,7 +714,6 @@ static void test_mouse_keyboard(void) todo_wine ok(hr == 1, "GetRegisteredRawInputDevices returned %d, raw_devices_count: %d\n", hr, raw_devices_count); ok(raw_devices[0].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[0].usUsagePage); - todo_wine ok(raw_devices[0].usUsage == 5, "Unexpected raw device usage: %x\n", raw_devices[0].usUsage); ok(raw_devices[0].dwFlags == 0, "Unexpected raw device flags: %x\n", raw_devices[0].dwFlags); ok(raw_devices[0].hwndTarget == hwnd, "Unexpected raw device target: %p\n", raw_devices[0].hwndTarget);
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=56922
Your paranoid android.
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
Under XInput2 protocol version < 2.1, RawEvents are not supposed to be sent if a pointer grab is active. However slave device events are still received regardless of this specification and Wine implemented a workaround to receive RawEvents during pointer grabs by listening to these slave device events.
However as soon as a mouse button is pressed, only the grabbing client will receive the raw motion events.
By advertising the support of XInput2 version >= 2.1, where rawevents are sent even during pointer grabs, we ensure to receive the RawMotion events from the desktop window thread, even if a mouse grab is active.
It is also possible to simplify the code by listening to master device events only and get rid of slave device id tracking.
Signed-off-by: Rémi Bernon rbernon@codeweavers.com --- dlls/winex11.drv/mouse.c | 49 ++++++++------------------------------- dlls/winex11.drv/x11drv.h | 3 --- 2 files changed, 10 insertions(+), 42 deletions(-)
diff --git a/dlls/winex11.drv/mouse.c b/dlls/winex11.drv/mouse.c index cedb488614d..2c68e68a992 100644 --- a/dlls/winex11.drv/mouse.c +++ b/dlls/winex11.drv/mouse.c @@ -304,12 +304,16 @@ static void enable_xinput2(void)
if (data->xi2_state == xi_unknown) { - int major = 2, minor = 0; - if (!pXIQueryVersion( data->display, &major, &minor )) data->xi2_state = xi_disabled; + int major = 2, minor = 1; + if (!pXIQueryVersion( data->display, &major, &minor ) && major == 2 && minor > 0) + { + TRACE( "XInput2 v%d.%d available\n", major, minor ); + data->xi2_state = xi_disabled; + } else { data->xi2_state = xi_unavailable; - WARN( "X Input 2 not available\n" ); + WARN( "XInput v2.1 not available\n" ); } } if (data->xi2_state == xi_unavailable) return; @@ -317,7 +321,7 @@ static void enable_xinput2(void)
mask.mask = mask_bits; mask.mask_len = sizeof(mask_bits); - mask.deviceid = XIAllDevices; + mask.deviceid = XIAllMasterDevices; memset( mask_bits, 0, sizeof(mask_bits) ); XISetMask( mask_bits, XI_DeviceChanged ); XISetMask( mask_bits, XI_RawMotion ); @@ -329,16 +333,6 @@ static void enable_xinput2(void) update_relative_valuators( pointer_info->classes, pointer_info->num_classes ); pXIFreeDeviceInfo( pointer_info );
- /* This device info list is only used to find the initial current slave if - * no XI_DeviceChanged events happened. If any hierarchy change occurred that - * might be relevant here (eg. user switching mice after (un)plugging), a - * XI_DeviceChanged event will point us to the right slave. So this list is - * safe to be obtained statically at enable_xinput2() time. - */ - if (data->xi2_devices) pXIFreeDeviceInfo( data->xi2_devices ); - data->xi2_devices = pXIQueryDevice( data->display, XIAllDevices, &data->xi2_device_count ); - data->xi2_current_slave = 0; - data->xi2_state = xi_enabled; #endif } @@ -359,15 +353,12 @@ static void disable_xinput2(void)
mask.mask = NULL; mask.mask_len = 0; - mask.deviceid = XIAllDevices; + mask.deviceid = XIAllMasterDevices;
pXISelectEvents( data->display, DefaultRootWindow( data->display ), &mask, 1 ); - pXIFreeDeviceInfo( data->xi2_devices ); data->x_rel_valuator.number = -1; data->y_rel_valuator.number = -1; - data->xi2_devices = NULL; data->xi2_core_pointer = 0; - data->xi2_current_slave = 0; #endif }
@@ -1763,7 +1754,6 @@ static BOOL X11DRV_DeviceChanged( XGenericEventCookie *xev ) if (event->reason != XISlaveSwitch) return FALSE;
update_relative_valuators( event->classes, event->num_classes ); - data->xi2_current_slave = event->sourceid; return TRUE; }
@@ -1784,26 +1774,7 @@ static BOOL X11DRV_RawMotion( XGenericEventCookie *xev ) if (thread_data->x_rel_valuator.number < 0 || thread_data->y_rel_valuator.number < 0) return FALSE; if (!event->valuators.mask_len) return FALSE; if (thread_data->xi2_state != xi_enabled) return FALSE; - - /* If there is no slave currently detected, no previous motion nor device - * change events were received. Look it up now on the device list in this - * case. - */ - if (!thread_data->xi2_current_slave) - { - XIDeviceInfo *devices = thread_data->xi2_devices; - - for (i = 0; i < thread_data->xi2_device_count; i++) - { - if (devices[i].use != XISlavePointer) continue; - if (devices[i].deviceid != event->deviceid) continue; - if (devices[i].attachment != thread_data->xi2_core_pointer) continue; - thread_data->xi2_current_slave = event->deviceid; - break; - } - } - - if (event->deviceid != thread_data->xi2_current_slave) return FALSE; + if (event->deviceid != thread_data->xi2_core_pointer) return FALSE;
x_rel = &thread_data->x_rel_valuator; y_rel = &thread_data->y_rel_valuator; diff --git a/dlls/winex11.drv/x11drv.h b/dlls/winex11.drv/x11drv.h index d4e476facb2..7dd8c158617 100644 --- a/dlls/winex11.drv/x11drv.h +++ b/dlls/winex11.drv/x11drv.h @@ -336,12 +336,9 @@ struct x11drv_thread_data DWORD clip_reset; /* time when clipping was last reset */ HKL kbd_layout; /* active keyboard layout */ enum { xi_unavailable = -1, xi_unknown, xi_disabled, xi_enabled } xi2_state; /* XInput2 state */ - void *xi2_devices; /* list of XInput2 devices (valid when state is enabled) */ - int xi2_device_count; struct x11drv_valuator_data x_rel_valuator; struct x11drv_valuator_data y_rel_valuator; int xi2_core_pointer; /* XInput2 core pointer id */ - int xi2_current_slave; /* Current slave driving the Core pointer */ };
extern struct x11drv_thread_data *x11drv_init_thread_data(void) DECLSPEC_HIDDEN;
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=56923
Your paranoid android.
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8716: Test failed: WaitForSingleObject failed 102 msg.c:8722: Test failed: destroy child on thread exit: 0: the msg sequence is not complete: expected 0082 - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 01FD0090 msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 01FD0090 msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 0089008A win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 0089008A win.c:2720: Test succeeded inside todo block: GetFocus() = 0089008A win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
=== 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 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:13367: Test failed: MonitorFromPoint error 3735928559 msg.c:13372: Test failed: GetMonitorInfo error 1461 msg.c:13417: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: in msg 0x0047 expecting wParam 0x8160 got 0x8960 msg.c:13417: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: in msg 0x0047 expecting wParam 0x8130 got 0x8930 msg.c:13417: Test failed: 46: ShowWindow(SW_RESTORE): 6: in msg 0x0047 expecting wParam 0x8120 got 0x8920 msg.c:11813: Test failed: wrong qstatus 00090000 msg.c:11822: Test failed: wrong qstatus 00490040 msg.c:11843: Test failed: wrong qstatus 00090000 msg.c:11851: Test failed: wrong qstatus 00490040 msg.c:11862: Test failed: wrong qstatus 00090000 msg.c:11873: Test failed: wrong qstatus 00010000 msg.c:11884: Test failed: wrong qstatus 00010000 msg.c:11889: Test failed: got 0 and 0000 instead of TRUE and WM_PAINT msg.c:11892: Test failed: WmPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11009: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11020: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11034: Test failed: ScrollWindowEx: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:11044: Test failed: ScrollWindow: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5209: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5220: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5231: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5235: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5240: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5241: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5244: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5253: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5256: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5257: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0003 instead msg.c:5258: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0047 - actual 0000 msg.c:5294: Test failed: SetWindowPos:show_popup_first_show_window_child2: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5304: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 3: in msg 0x0047 expecting wParam 0x3b got 0x83b msg.c:5521: Test failed: SetMenu:NonVisibleSizeChange: 5: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 12: in msg 0x0047 expecting wParam 0x33 got 0x833 msg.c:5531: Test failed: SetMenu:VisibleSizeChange: 14: the msg sequence is not complete: expected 0005 - actual 0000 msg.c:5682: Test failed: Expected 100, got 27 msg.c:5692: Test failed: Expected 100, got 27 msg.c:3932: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 19: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3954: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 5: in msg 0x0047 expecting wParam 0x9062 got 0x9863 msg.c:3978: Test failed: ShowWindow(SW_MAXIMIZE):MDI child: 5: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:3984: Test failed: ShowWindow(SW_RESTORE):maximized MDI child: 4: in msg 0x0047 expecting wParam 0x9022 got 0x9823 msg.c:4185: Test failed: Create maximized invisible MDI child window: 17: in msg 0x0047 expecting wParam 0x8038 got 0x8839 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[0]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[1]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[8]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 8: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6394: Test failed: SetFocus(0) on a button: 9: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6401: Test failed: BM_SETSTYLE on a button: 2: the msg sequence is not complete: expected 000f - actual 0000 msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x0085 instead msg.c:6536: Test failed: button[10]: WM_SETFONT on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:7211: Test failed: WM_SETFONT on a static: 4: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:7881: Test failed: Update region shouldn't be empty msg.c:7886: Test failed: Update region shouldn't be empty msg.c:7914: Test failed: Update region shouldn't be empty msg.c:7915: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7917: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7939: Test failed: Update region shouldn't be empty msg.c:7940: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7942: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7969: Test failed: Update region shouldn't be empty msg.c:7970: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7972: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:7982: Test failed: Update region shouldn't be empty msg.c:7983: Test failed: InvalidateErase: 0: the msg sequence is not complete: expected 0085 - actual 0000 msg.c:7985: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8040: Test failed: Update region shouldn't be empty msg.c:8052: Test failed: Update region shouldn't be empty msg.c:8056: Test failed: InvalidateErase: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8074: Test failed: Update region shouldn't be empty msg.c:8084: Test failed: Erase: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8086: Test failed: Update region shouldn't be empty msg.c:8093: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8109: Test failed: Paint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8161: Test failed: InvalidateParentChild: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8167: Test failed: Update region shouldn't be empty msg.c:8169: Test failed: Update region shouldn't be empty msg.c:8171: Test failed: InvalidateParent: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8176: Test failed: WmParentPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8180: Test failed: InvalidateParent2: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8186: Test failed: InvalidateParentChild2: 0: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8192: Test failed: InvalidateParentChild3: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8201: Test failed: Update region shouldn't be empty msg.c:8203: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8205: Test failed: Update region shouldn't be empty msg.c:8215: Test failed: Update region shouldn't be empty msg.c:8217: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8220: Test failed: Update region shouldn't be empty msg.c:8229: Test failed: Update region shouldn't be empty msg.c:8231: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8240: Test failed: Update region shouldn't be empty msg.c:8243: Test failed: Update region shouldn't be empty msg.c:8250: Test failed: Update region shouldn't be empty msg.c:8255: Test failed: WmParentErasePaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8265: Test failed: WmInvalidateErasePaint2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8277: Test failed: WmParentOnlyNcPaint: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8282: Test failed: Update region shouldn't be empty msg.c:8288: Test failed: WmParentPaintNc2: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8295: Test failed: Update region shouldn't be empty msg.c:8297: Test failed: WmParentPaintNc3: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8306: Test failed: WmChildPaintNc: 0: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8324: Test failed: Update region shouldn't be empty msg.c:8330: Test failed: Update region shouldn't be empty msg.c:8342: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 5: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8357: Test failed: SetWindowPos:FrameChanged_clip: 6: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:8367: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8373: Test failed: WmParentPaint: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8384: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8394: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg sequence is not complete: expected 000f - actual 0000 msg.c:8722: Test failed: destroy child on thread exit: 1: the msg sequence is not complete: expected 000f - actual 0000 msg.c:9283: Test succeeded inside todo block: Alt press/release: marked "todo_wine" but succeeds msg.c:9303: Test succeeded inside todo block: VK_F10 press/release: marked "todo_wine" but succeeds msg.c:9313: Test succeeded inside todo block: SHIFT+F10 press/release: marked "todo_wine" but succeeds msg.c:11228: Test failed: WmDispatchPaint: 1: the msg sequence is not complete: expected 0014 - actual 0000 msg.c:11233: Test failed: WM_PAINT messages stopped msg.c:11248: 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:8371: Test failed: MonitorFromPoint error 3735928559 win.c:8376: Test failed: GetMonitorInfo error 1461 win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1010000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x40000/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0x80/0x1c50000: window rect (0,0)-(104,19) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1050000: window rect (0,0)-(104,19) win.c:8457: Test failed: 0/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x40000/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x40000/0x1410000: window rect (0,0)-(106,21) win.c:8457: Test failed: 0x80/0x1c10000: window rect (0,0)-(106,21) must be in (0,0)-(0,0) win.c:8477: Test failed: 0x80/0x1410000: window rect (0,0)-(106,21) win.c:8084: Test failed: wrong window rect (100,100)-(212,127) win.c:6179: Test failed: parent client rect is empty win.c:5913: Test failed: 00CD008C msg 81 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:5913: Test failed: 00CD008C msg 1 wrong rect (300000,300000)-(300112,300027) / (0,0)-(12,12) win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 003800C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2078: Test failed: DefWindowProc should not change WINDOWPOS: 004700C4 after 00000000, x -4, y -4, cx 112, cy 27 flags 00008030 win.c:2720: Test succeeded inside todo block: GetActiveWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetForegroundWindow() = 016D008E win.c:2720: Test succeeded inside todo block: GetFocus() = 016D008E win.c:7920: Test succeeded inside todo block: Detected infinite WM_PAINT loop (401). win.c:4979: Test failed: pixel should be black, color is ffffffff win.c:4999: Test failed: pixel should be black, color is ffffffff win.c:5040: Test failed: wrong update region win.c:5055: Test failed: wrong update region win.c:5075: Test failed: unexpected update rect: (20,40)-(30,50) win.c:5089: Test failed: wrong update region win.c:5099: Test failed: wrong update region in excessive scroll win.c:5121: Test failed: wrong update region win.c:5130: Test failed: wrong update region win.c:5139: Test failed: wrong update region win.c:5154: Test failed: wrong update region win.c:5230: Test failed: pixel should be black, color is ffffffff win.c:5234: Test failed: pixel should be black, color is ffffffff win.c:5239: Test failed: rects do not match (0,0)-(0,0) / (0,0)-(100,100) win.c:5250: Test failed: wrong update region win.c:5261: Test failed: wrong update region win.c:1167: 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:1174: 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:5494: Test failed: Multiple unexpected WM_PAINT calls 0 win.c:5689: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect clip, field bottom: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field right: expected 150, got 0 win.c:5689: Test failed: window main, rect paint, field bottom: expected 150, got 0 win.c:5689: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field right: expected 40, got 0 win.c:5689: Test failed: window child2, rect paint, field bottom: expected 40, got 0 win.c:5695: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5695: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5695: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5695: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5695: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5695: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5695: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5695: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5695: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5695: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5701: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5701: Test failed: window main, rect clip, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect clip, field bottom: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field right: expected 10, got 0 win.c:5701: Test failed: window main, rect paint, field bottom: expected 10, got 0 win.c:5707: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5707: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5707: Test failed: window main, rect clip, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect clip, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect clip, field bottom: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field left: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field top: expected 40, got 0 win.c:5707: Test failed: window main, rect paint, field right: expected 50, got 0 win.c:5707: Test failed: window main, rect paint, field bottom: expected 50, got 0 win.c:5707: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child1, rect clip, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect clip, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect clip, field bottom: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field left: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field top: expected 20, got 0 win.c:5707: Test failed: window child1, rect paint, field right: expected 30, got 0 win.c:5707: Test failed: window child1, rect paint, field bottom: expected 30, got 0 win.c:5707: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5707: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5707: Test failed: window child2, rect clip, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect clip, field bottom: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field right: expected 10, got 0 win.c:5707: Test failed: window child2, rect paint, field bottom: expected 10, got 0 win.c:5713: Test failed: window main, rect client, field right: expected 150, got 0 win.c:5713: Test failed: window main, rect client, field bottom: expected 150, got 0 win.c:5713: Test failed: window main, rect clip, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect clip, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect clip, field bottom: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field left: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field top: expected 20, got 0 win.c:5713: Test failed: window main, rect paint, field right: expected 60, got 0 win.c:5713: Test failed: window main, rect paint, field bottom: expected 60, got 0 win.c:5713: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5713: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field right: expected 40, got 0 win.c:5713: Test failed: window child2, rect client, field bottom: expected 40, got 0 win.c:5713: Test failed: window child2, rect clip, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect clip, field bottom: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field right: expected 20, got 0 win.c:5713: Test failed: window child2, rect paint, field bottom: expected 20, got 0 win.c:5719: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5719: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5719: Test failed: window child1, rect clip, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect clip, field bottom: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field right: expected 10, got 0 win.c:5719: Test failed: window child1, rect paint, field bottom: expected 10, got 0 win.c:5725: Test failed: window child1, rect client, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect client, field bottom: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field right: expected 40, got 0 win.c:5725: Test failed: window child1, rect paint, field bottom: expected 40, got 0 win.c:6855: Test failed: expected (-3,-3)-(96468995,8256659), got (-3,-3)-(3,3) win.c:7027: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7038: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7091: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7105: Test failed: expected (-3,-3)-(3,3), got (-3,-3)-(109,24) win.c:7112: Test failed: expected (300,300)-(500,500), got (300,300)-(412,327) win.c:7123: Test failed: expected (20,20)-(210,110), got (20,20)-(132,47) win.c:7298: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7350: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7365: Test failed: expected (99,118)-(401,401), got (99,118)-(211,145) win.c:7373: Test failed: expected (403,422)-(603,622), got (403,422)-(515,449) win.c:7384: Test failed: expected (123,142)-(313,232), got (123,142)-(235,169) win.c:7745: Test failed: GetUpdateRect returned empty region win.c:7746: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7760: Test failed: WM_PAINT should have been received in parent win.c:7804: Test failed: GetUpdateRect returned empty region win.c:7805: Test failed: rects do not match (0,0)-(0,0) / (10,10)-(40,40) win.c:7819: Test failed: WM_PAINT should have been received in parent win.c:3374: Test succeeded inside todo block: Expected active window 00B300D0, got 00B300D0. win.c:3375: Test succeeded inside todo block: Expected focus window 00B300D0, got 00B300D0. win.c:9764: Test failed: assigned and retrieved update regions are different win.c:9787: Test failed: wrong update region win.c:9999: Test failed: pos = 00000000 win.c:10003: Test failed: pos = 00000000 win.c:10007: Test failed: pos = 00000000 win.c:10013: Test failed: pos = 00000000 win.c:10020: Test failed: pos = 00000000 win.c:10026: Test failed: pos = 00000000 win.c:10030: Test failed: pos = 00000000 win.c:10034: Test failed: pos = 00000000 win.c:10046: Test failed: pos = 00000000 win.c:10515: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 0: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 1: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 1: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 2: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 2: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test failed: 3: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 3: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 4: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 5: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 5: GetPixel: got ffffffff, expected 00222200 win.c:10515: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10517: Test succeeded inside todo block: 6: GetPixel: got ffffffff, expected ffffffff win.c:10515: Test failed: 7: GetPixel: got ffffffff, expected 00111100 win.c:10517: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:10519: Test failed: 7: GetPixel: got ffffffff, expected 00222200 win.c:11451: Test failed: got normal pos (100,200)-(212,227) win.c:11464: Test failed: got normal pos (100,200)-(212,227) win.c:11476: Test failed: got normal pos (100,200)-(212,227) win.c:11489: Test failed: got normal pos (100,200)-(212,227) win.c:11501: Test failed: got normal pos (100,200)-(212,227) win.c:11515: Test failed: got normal pos (100,200)-(212,227) win.c:11528: Test failed: got normal pos (100,200)-(212,227) win.c:11541: Test failed: got normal pos (100,200)-(212,227) win.c:11559: Test failed: got normal pos (200,300)-(312,327) win.c:11562: Test failed: got window rect (200,300)-(312,327) win.c:11575: Test failed: got normal pos (200,300)-(312,327) win.c:11597: Test failed: got normal pos (100,200)-(212,227) win.c:11618: Test failed: got normal pos (100,200)-(212,227) win.c:11671: Test failed: hwnd 0: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11671: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 1: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 2: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 3: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 4: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 5: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 6: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 7: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 8: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11699: Test failed: hwnd 9: expected rect (204,423)-(404,623), got (204,423)-(316,450) win.c:11728: Test failed: hwnd 0: expected rect (144,253)-(250,277), got (144,226)-(250,250) win.c:11728: Test failed: hwnd 1: expected rect (144,280)-(250,304), got (144,253)-(250,277) win.c:11728: Test failed: hwnd 2: expected rect (144,307)-(250,331), got (144,280)-(250,304) win.c:11728: Test failed: hwnd 3: expected rect (144,334)-(250,358), got (144,307)-(250,331) win.c:11728: Test failed: hwnd 4: expected rect (144,361)-(250,385), got (144,334)-(250,358) win.c:11728: Test failed: hwnd 5: expected rect (144,388)-(250,412), got (144,361)-(250,385) win.c:11728: Test failed: hwnd 6: expected rect (144,415)-(250,439), got (144,388)-(250,412) win.c:11728: Test failed: hwnd 7: expected rect (144,442)-(250,466), got (144,415)-(250,439) win.c:11728: Test failed: hwnd 8: expected rect (144,469)-(250,493), got (144,442)-(250,466) win.c:11728: Test failed: hwnd 9: expected rect (144,496)-(250,520), got (144,469)-(250,493) win.c:11763: Test failed: hwnd 0: expected rect (-84,189)-(22,213), got (62,189)-(168,213) win.c:11763: Test failed: hwnd 1: expected rect (-230,189)-(-124,213), got (-84,189)-(22,213) win.c:11763: Test failed: hwnd 2: expected rect (-376,189)-(-270,213), got (-230,189)-(-124,213) win.c:11763: Test failed: hwnd 3: expected rect (-522,189)-(-416,213), got (-376,189)-(-270,213) win.c:11763: Test failed: hwnd 4: expected rect (-668,189)-(-562,213), got (-522,189)-(-416,213) win.c:11763: Test failed: hwnd 5: expected rect (-814,189)-(-708,213), got (-668,189)-(-562,213) win.c:11763: Test failed: hwnd 6: expected rect (-960,189)-(-854,213), got (-814,189)-(-708,213) win.c:11763: Test failed: hwnd 7: expected rect (-1106,189)-(-1000,213), got (-960,189)-(-854,213) win.c:11763: Test failed: hwnd 8: expected rect (-1252,189)-(-1146,213), got (-1106,189)-(-1000,213) win.c:11763: 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 (36068 bytes)
We still need to send "normal" input from the clipping window thread to trigger low-level hooks callbacks when clipping cursor. This is for instance used in our dinput < 8 implementation.
Merging them with the raw input from the desktop thread creates some confusion on the server side between the absolute position from the MotionNotify events and the relative movement from the RawMotion events.
Signed-off-by: Rémi Bernon rbernon@codeweavers.com --- dlls/winex11.drv/event.c | 10 ++++- dlls/winex11.drv/mouse.c | 79 ++++++++++++++++++++++++++++------ dlls/winex11.drv/x11drv.h | 3 ++ dlls/winex11.drv/x11drv_main.c | 4 ++ 4 files changed, 80 insertions(+), 16 deletions(-)
diff --git a/dlls/winex11.drv/event.c b/dlls/winex11.drv/event.c index f79f40c2323..e1aa83decb1 100644 --- a/dlls/winex11.drv/event.c +++ b/dlls/winex11.drv/event.c @@ -321,6 +321,10 @@ static enum event_merge_action merge_raw_motion_events( XIRawEvent *prev, XIRawE */ static enum event_merge_action merge_events( XEvent *prev, XEvent *next ) { +#ifdef HAVE_X11_EXTENSIONS_XINPUT2_H + struct x11drv_thread_data *thread_data = x11drv_thread_data(); +#endif + switch (prev->type) { case ConfigureNotify: @@ -352,19 +356,21 @@ static enum event_merge_action merge_events( XEvent *prev, XEvent *next ) case GenericEvent: if (next->xcookie.extension != xinput2_opcode) break; if (next->xcookie.evtype != XI_RawMotion) break; - if (x11drv_thread_data()->warp_serial) break; + if (thread_data->xi2_rawinput_only) break; + if (thread_data->warp_serial) break; return MERGE_KEEP; } break; case GenericEvent: if (prev->xcookie.extension != xinput2_opcode) break; if (prev->xcookie.evtype != XI_RawMotion) break; + if (thread_data->xi2_rawinput_only) break; switch (next->type) { case GenericEvent: if (next->xcookie.extension != xinput2_opcode) break; if (next->xcookie.evtype != XI_RawMotion) break; - if (x11drv_thread_data()->warp_serial) break; + if (thread_data->warp_serial) break; return merge_raw_motion_events( prev->xcookie.data, next->xcookie.data ); #endif } diff --git a/dlls/winex11.drv/mouse.c b/dlls/winex11.drv/mouse.c index 2c68e68a992..1e1faa692d5 100644 --- a/dlls/winex11.drv/mouse.c +++ b/dlls/winex11.drv/mouse.c @@ -289,9 +289,9 @@ static void update_relative_valuators(XIAnyClassInfo **valuators, int n_valuator
/*********************************************************************** - * enable_xinput2 + * X11DRV_XInput2_Enable */ -static void enable_xinput2(void) +void X11DRV_XInput2_Enable(void) { #ifdef HAVE_X11_EXTENSIONS_XINPUT2_H struct x11drv_thread_data *data = x11drv_thread_data(); @@ -323,9 +323,21 @@ static void enable_xinput2(void) mask.mask_len = sizeof(mask_bits); mask.deviceid = XIAllMasterDevices; memset( mask_bits, 0, sizeof(mask_bits) ); + XISetMask( mask_bits, XI_DeviceChanged ); XISetMask( mask_bits, XI_RawMotion ); - XISetMask( mask_bits, XI_ButtonPress ); + + if (GetWindowThreadProcessId( GetDesktopWindow(), NULL ) == GetCurrentThreadId()) + { + XISetMask( mask_bits, XI_RawButtonPress ); + XISetMask( mask_bits, XI_RawButtonRelease ); + data->xi2_rawinput_only = TRUE; + } + else + { + XISetMask( mask_bits, XI_ButtonPress ); + data->xi2_rawinput_only = FALSE; + }
pXISelectEvents( data->display, DefaultRootWindow( data->display ), &mask, 1 );
@@ -338,9 +350,9 @@ static void enable_xinput2(void) }
/*********************************************************************** - * disable_xinput2 + * X11DRV_XInput2_Disable */ -static void disable_xinput2(void) +void X11DRV_XInput2_Disable(void) { #ifdef HAVE_X11_EXTENSIONS_XINPUT2_H struct x11drv_thread_data *data = x11drv_thread_data(); @@ -400,7 +412,7 @@ static BOOL grab_clipping_window( const RECT *clip ) }
/* enable XInput2 unless we are already clipping */ - if (!data->clip_hwnd) enable_xinput2(); + if (!data->clip_hwnd) X11DRV_XInput2_Enable();
if (data->xi2_state != xi_enabled) { @@ -430,7 +442,7 @@ static BOOL grab_clipping_window( const RECT *clip )
if (!clipping_cursor) { - disable_xinput2(); + X11DRV_XInput2_Disable(); DestroyWindow( msg_hwnd ); return FALSE; } @@ -511,7 +523,7 @@ LRESULT clip_cursor_notify( HWND hwnd, HWND new_clip_hwnd ) TRACE( "clip hwnd reset from %p\n", hwnd ); data->clip_hwnd = 0; data->clip_reset = GetTickCount(); - disable_xinput2(); + X11DRV_XInput2_Disable(); DestroyWindow( hwnd ); } else if (hwnd == GetForegroundWindow()) /* request to clip */ @@ -603,7 +615,7 @@ static void send_mouse_input( HWND hwnd, Window window, unsigned int state, INPU } input->u.mi.dx += clip_rect.left; input->u.mi.dy += clip_rect.top; - __wine_send_input( hwnd, input, 0 ); + __wine_send_input( hwnd, input, SEND_HWMSG_SKIP_RAW ); return; }
@@ -664,7 +676,7 @@ static void send_mouse_input( HWND hwnd, Window window, unsigned int state, INPU
input->u.mi.dx = pt.x; input->u.mi.dy = pt.y; - __wine_send_input( hwnd, input, 0 ); + __wine_send_input( hwnd, input, SEND_HWMSG_SKIP_RAW ); }
#ifdef SONAME_LIBXCURSOR @@ -1610,7 +1622,7 @@ void move_resize_window( HWND hwnd, int dir ) input.u.mi.dwFlags = button_up_flags[button - 1] | MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_MOVE; input.u.mi.time = GetTickCount(); input.u.mi.dwExtraInfo = 0; - __wine_send_input( hwnd, &input, 0 ); + __wine_send_input( hwnd, &input, SEND_HWMSG_SKIP_RAW ); }
while (PeekMessageW( &msg, 0, 0, 0, PM_REMOVE )) @@ -1779,6 +1791,7 @@ static BOOL X11DRV_RawMotion( XGenericEventCookie *xev ) x_rel = &thread_data->x_rel_valuator; y_rel = &thread_data->y_rel_valuator;
+ input.type = INPUT_MOUSE; input.u.mi.mouseData = 0; input.u.mi.dwFlags = MOUSEEVENTF_MOVE; input.u.mi.time = EVENT_x11_time_to_win32_time( event->time ); @@ -1814,10 +1827,44 @@ static BOOL X11DRV_RawMotion( XGenericEventCookie *xev ) return FALSE; }
- TRACE( "pos %d,%d (event %f,%f)\n", input.u.mi.dx, input.u.mi.dy, dx, dy ); + if (!thread_data->xi2_rawinput_only) + { + TRACE( "pos %d,%d (event %f,%f)\n", input.u.mi.dx, input.u.mi.dy, dx, dy ); + __wine_send_input( 0, &input, SEND_HWMSG_SKIP_RAW ); + } + else + { + TRACE( "raw pos %d,%d (event %f,%f)\n", input.u.mi.dx, input.u.mi.dy, dx, dy ); + __wine_send_input( 0, &input, SEND_HWMSG_BCAST_RAW | SEND_HWMSG_ONLY_RAW ); + } + return TRUE; +} + +/*********************************************************************** + * X11DRV_RawButtonEvent + */ +static BOOL X11DRV_RawButtonEvent( XGenericEventCookie *cookie ) +{ + struct x11drv_thread_data *thread_data = x11drv_thread_data(); + XIRawEvent *event = cookie->data; + int button = event->detail - 1; + INPUT input;
- input.type = INPUT_MOUSE; - __wine_send_input( 0, &input, 0 ); + if (button >= NB_BUTTONS) return FALSE; + if (thread_data->xi2_state != xi_enabled) return FALSE; + if (event->deviceid != thread_data->xi2_core_pointer) return FALSE; + + TRACE( "raw button %u %s\n", button, event->evtype == XI_RawButtonRelease ? "up" : "down" ); + + input.type = INPUT_MOUSE; + input.u.mi.dx = 0; + input.u.mi.dy = 0; + input.u.mi.mouseData = event->evtype == XI_RawButtonRelease ? button_up_data[button] : button_down_data[button]; + input.u.mi.dwFlags = event->evtype == XI_RawButtonRelease ? button_up_flags[button] : button_down_flags[button]; + input.u.mi.time = EVENT_x11_time_to_win32_time(event->time); + input.u.mi.dwExtraInfo = 0; + + __wine_send_input( 0, &input, SEND_HWMSG_BCAST_RAW | SEND_HWMSG_ONLY_RAW ); return TRUE; }
@@ -1885,6 +1932,10 @@ BOOL X11DRV_GenericEvent( HWND hwnd, XEvent *xev ) case XI_RawMotion: ret = X11DRV_RawMotion( event ); break; + case XI_RawButtonPress: + case XI_RawButtonRelease: + ret = X11DRV_RawButtonEvent( event ); + break;
default: TRACE( "Unhandled event %#x\n", event->evtype ); diff --git a/dlls/winex11.drv/x11drv.h b/dlls/winex11.drv/x11drv.h index 7dd8c158617..b981beb6660 100644 --- a/dlls/winex11.drv/x11drv.h +++ b/dlls/winex11.drv/x11drv.h @@ -194,6 +194,8 @@ extern BOOL CDECL X11DRV_UnrealizePalette( HPALETTE hpal ) DECLSPEC_HIDDEN;
extern void X11DRV_Xcursor_Init(void) DECLSPEC_HIDDEN; extern void X11DRV_XInput2_Init(void) DECLSPEC_HIDDEN; +extern void X11DRV_XInput2_Enable(void) DECLSPEC_HIDDEN; +extern void X11DRV_XInput2_Disable(void) DECLSPEC_HIDDEN;
extern DWORD copy_image_bits( BITMAPINFO *info, BOOL is_r8g8b8, XImage *image, const struct gdi_image_bits *src_bits, struct gdi_image_bits *dst_bits, @@ -339,6 +341,7 @@ struct x11drv_thread_data struct x11drv_valuator_data x_rel_valuator; struct x11drv_valuator_data y_rel_valuator; int xi2_core_pointer; /* XInput2 core pointer id */ + int xi2_rawinput_only; };
extern struct x11drv_thread_data *x11drv_init_thread_data(void) DECLSPEC_HIDDEN; diff --git a/dlls/winex11.drv/x11drv_main.c b/dlls/winex11.drv/x11drv_main.c index 21807af3f18..c3a2ef93db2 100644 --- a/dlls/winex11.drv/x11drv_main.c +++ b/dlls/winex11.drv/x11drv_main.c @@ -611,6 +611,8 @@ void CDECL X11DRV_ThreadDetach(void)
if (data) { + if (GetWindowThreadProcessId( GetDesktopWindow(), NULL ) == GetCurrentThreadId()) + X11DRV_XInput2_Disable(); if (data->xim) XCloseIM( data->xim ); if (data->font_set) XFreeFontSet( data->display, data->font_set ); XCloseDisplay( data->display ); @@ -680,6 +682,8 @@ struct x11drv_thread_data *x11drv_init_thread_data(void) TlsSetValue( thread_data_tls_index, data );
if (use_xim) X11DRV_SetupXIM(); + if (GetWindowThreadProcessId( GetDesktopWindow(), NULL ) == GetCurrentThreadId()) + X11DRV_XInput2_Enable();
return data; }
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=56924
Your paranoid android.
=== debian10 (build log) ===
Task: WineTest did not produce the win32 report
=== debian10 (build log) ===
Task: WineTest did not produce the wow32 report