Fixes an out of bounds access in `show_popup`.
```c if (menu->FocusedItem != NO_SELECTED_ITEM) { menu->items[menu->FocusedItem].fState &= ~(MF_HILITE|MF_MOUSESELECT); // <- can crash here menu->FocusedItem = NO_SELECTED_ITEM; } ```
Menu resets focused item on show, not on close. If items were later deleted, next time user opens the menu, menu can crash on out of bounds access and won't show up again, as menu thinks it's still on screen.
In other words: - open split button dropdown - click on any item - clear dropdown items - open dropdown again
Menu borked and won't open again.
Source for the testing app for reproduction. [test.c](/uploads/2f703f63891b33e1a0eb0fcd27c912b7/test.c)
I guess, the alternative is to reset focused item when menu is closed, but not sure where's the best place to do that, haven't dug deep enough.
-- v4: win32u: Reset focused item if it was removed when removing a menu item win32u: Allow select_item to work with off-screen menus win32u: Add deselect to HiliteMenuItem win32u: Return FALSE in HiliteMenuItem when window handle is NULL
From: Vladislav Timonin timoninvlad@yandex.ru
--- dlls/user32/tests/menu.c | 3 --- dlls/win32u/menu.c | 6 ++++++ 2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/dlls/user32/tests/menu.c b/dlls/user32/tests/menu.c index 6862f13c6b1..b00c403940f 100644 --- a/dlls/user32/tests/menu.c +++ b/dlls/user32/tests/menu.c @@ -2531,11 +2531,8 @@ static void test_menu_hilitemenuitem( void ) "HiliteMenuItem: Item 2 is hilited\n");
SetLastError(0xdeadbeef); - todo_wine - { ok(!HiliteMenuItem(NULL, hPopupMenu, 1, MF_HILITE | MF_BYPOSITION), "HiliteMenuItem: call should have failed.\n"); - } ok(GetLastError() == 0xdeadbeef || /* 9x */ GetLastError() == ERROR_INVALID_WINDOW_HANDLE /* NT */, "HiliteMenuItem: expected error ERROR_INVALID_WINDOW_HANDLE, got: %ld\n", GetLastError()); diff --git a/dlls/win32u/menu.c b/dlls/win32u/menu.c index a6b7ec38003..09107bc0e57 100644 --- a/dlls/win32u/menu.c +++ b/dlls/win32u/menu.c @@ -4545,6 +4545,12 @@ BOOL WINAPI NtUserHiliteMenuItem( HWND hwnd, HMENU handle, UINT item, UINT hilit
TRACE( "(%p, %p, %04x, %04x);\n", hwnd, handle, item, hilite );
+ if (!hwnd) + { + RtlSetLastWin32Error(ERROR_INVALID_WINDOW_HANDLE); + return FALSE; + } + if (!(menu = find_menu_item(handle, item, hilite, &pos))) return FALSE; handle_menu = menu->obj.handle; focused_item = menu->FocusedItem;
From: Vladislav Timonin timoninvlad@yandex.ru
--- dlls/win32u/menu.c | 41 ++++++++++++++++++++++++++++++++--------- 1 file changed, 32 insertions(+), 9 deletions(-)
diff --git a/dlls/win32u/menu.c b/dlls/win32u/menu.c index 09107bc0e57..7bc017b28df 100644 --- a/dlls/win32u/menu.c +++ b/dlls/win32u/menu.c @@ -3152,6 +3152,29 @@ static void ensure_menu_item_visible( struct menu *menu, UINT index, HDC hdc ) } }
+static void clear_item_hilite(HWND owner, HMENU hmenu) +{ + struct menu *menu; + HDC hdc; + + TRACE( "owner %p menu %p\n", owner, hmenu); + + menu = unsafe_menu_ptr( hmenu ); + if (!menu || !menu->nItems || !menu->hWnd || menu->FocusedItem == NO_SELECTED_ITEM) return; + + menu->items[menu->FocusedItem].fState &= ~(MF_HILITE | MF_MOUSESELECT); + + if (menu->wFlags & MF_POPUP) hdc = NtUserGetDC( menu->hWnd ); + else hdc = NtUserGetDCEx( menu->hWnd, 0, DCX_CACHE | DCX_WINDOW); + + NtGdiSelectFont( hdc, get_menu_font( FALSE ) ); + + draw_menu_item( menu->hWnd, menu, owner, hdc, &menu->items[menu->FocusedItem], + !(menu->wFlags & MF_POPUP), ODA_SELECT ); + + NtUserReleaseDC( menu->hWnd, hdc ); +} + static void select_item( HWND owner, HMENU hmenu, UINT index, BOOL send_select, HMENU topmenu ) { struct menu *menu; @@ -3174,12 +3197,7 @@ static void select_item( HWND owner, HMENU hmenu, UINT index, BOOL send_select, NtGdiSelectFont( hdc, get_menu_font( FALSE ));
/* Clear previous highlighted item */ - if (menu->FocusedItem != NO_SELECTED_ITEM) - { - menu->items[menu->FocusedItem].fState &= ~(MF_HILITE|MF_MOUSESELECT); - draw_menu_item( menu->hWnd, menu, owner, hdc, &menu->items[menu->FocusedItem], - !(menu->wFlags & MF_POPUP), ODA_SELECT ); - } + clear_item_hilite(owner, hmenu);
/* Highlight new item (if any) */ menu->FocusedItem = index; @@ -4556,11 +4574,16 @@ BOOL WINAPI NtUserHiliteMenuItem( HWND hwnd, HMENU handle, UINT item, UINT hilit focused_item = menu->FocusedItem; release_menu_ptr(menu);
- if (focused_item != pos) + if ((hilite & MF_HILITE)) { - hide_sub_popups( hwnd, handle_menu, FALSE, 0 ); - select_item( hwnd, handle_menu, pos, TRUE, 0 ); + if (focused_item != pos) + { + hide_sub_popups( hwnd, handle_menu, FALSE, 0 ); + select_item( hwnd, handle_menu, pos, TRUE, 0 ); + } } + else /* MF_UNHILITE */ + clear_item_hilite( hwnd, handle_menu );
return TRUE; }
From: Vladislav Timonin timoninvlad@yandex.ru
--- dlls/user32/tests/menu.c | 6 ------ dlls/win32u/menu.c | 40 +++++++++++++++++++++++++--------------- 2 files changed, 25 insertions(+), 21 deletions(-)
diff --git a/dlls/user32/tests/menu.c b/dlls/user32/tests/menu.c index b00c403940f..9cd24141ad5 100644 --- a/dlls/user32/tests/menu.c +++ b/dlls/user32/tests/menu.c @@ -2578,11 +2578,8 @@ static void test_menu_hilitemenuitem( void ) ok(GetLastError() == 0xdeadbeef, "HiliteMenuItem: expected error 0xdeadbeef, got: %ld\n", GetLastError());
- todo_wine - { ok(GetMenuState(hPopupMenu, 1, MF_BYPOSITION) & MF_HILITE, "HiliteMenuItem: Item 2 is not hilited\n"); - }
/* unhilite a menu item (by position) */
@@ -2603,11 +2600,8 @@ static void test_menu_hilitemenuitem( void ) ok(GetLastError() == 0xdeadbeef, "HiliteMenuItem: expected error 0xdeadbeef, got: %ld\n", GetLastError());
- todo_wine - { ok(GetMenuState(hPopupMenu, 2, MF_BYPOSITION) & MF_HILITE, "HiliteMenuItem: Item 3 is not hilited\n"); - }
/* unhilite a menu item (by command) */
diff --git a/dlls/win32u/menu.c b/dlls/win32u/menu.c index 7bc017b28df..50ff451bf3e 100644 --- a/dlls/win32u/menu.c +++ b/dlls/win32u/menu.c @@ -3155,15 +3155,17 @@ static void ensure_menu_item_visible( struct menu *menu, UINT index, HDC hdc ) static void clear_item_hilite(HWND owner, HMENU hmenu) { struct menu *menu; - HDC hdc; + HDC hdc = NULL;
TRACE( "owner %p menu %p\n", owner, hmenu);
menu = unsafe_menu_ptr( hmenu ); - if (!menu || !menu->nItems || !menu->hWnd || menu->FocusedItem == NO_SELECTED_ITEM) return; + if (!menu || !menu->nItems || menu->FocusedItem == NO_SELECTED_ITEM) return;
menu->items[menu->FocusedItem].fState &= ~(MF_HILITE | MF_MOUSESELECT);
+ if (!menu->hWnd) return; + if (menu->wFlags & MF_POPUP) hdc = NtUserGetDC( menu->hWnd ); else hdc = NtUserGetDCEx( menu->hWnd, 0, DCX_CACHE | DCX_WINDOW);
@@ -3178,24 +3180,27 @@ static void clear_item_hilite(HWND owner, HMENU hmenu) static void select_item( HWND owner, HMENU hmenu, UINT index, BOOL send_select, HMENU topmenu ) { struct menu *menu; - HDC hdc; + HDC hdc = NULL;
TRACE( "owner %p menu %p index 0x%04x select 0x%04x\n", owner, hmenu, index, send_select );
menu = unsafe_menu_ptr( hmenu ); - if (!menu || !menu->nItems || !menu->hWnd) return; + if (!menu || !menu->nItems) return;
if (menu->FocusedItem == index) return; - if (menu->wFlags & MF_POPUP) hdc = NtUserGetDC( menu->hWnd ); - else hdc = NtUserGetDCEx( menu->hWnd, 0, DCX_CACHE | DCX_WINDOW); - if (!top_popup) + if (menu->hWnd) + { + if (menu->wFlags & MF_POPUP) hdc = NtUserGetDC( menu->hWnd ); + else hdc = NtUserGetDCEx( menu->hWnd, 0, DCX_CACHE | DCX_WINDOW); + + NtGdiSelectFont( hdc, get_menu_font( FALSE )); + } + if (!top_popup && menu->hWnd) { top_popup = menu->hWnd; top_popup_hmenu = hmenu; }
- NtGdiSelectFont( hdc, get_menu_font( FALSE )); - /* Clear previous highlighted item */ clear_item_hilite(owner, hmenu);
@@ -3206,11 +3211,14 @@ static void select_item( HWND owner, HMENU hmenu, UINT index, BOOL send_select, if (!(menu->items[index].fType & MF_SEPARATOR)) { menu->items[index].fState |= MF_HILITE; - ensure_menu_item_visible( menu, index, hdc ); - draw_menu_item( menu->hWnd, menu, owner, hdc, &menu->items[index], - !(menu->wFlags & MF_POPUP), ODA_SELECT ); + if (menu->hWnd) + { + ensure_menu_item_visible( menu, index, hdc ); + draw_menu_item( menu->hWnd, menu, owner, hdc, &menu->items[index], + !(menu->wFlags & MF_POPUP), ODA_SELECT ); + } } - if (send_select) + if (send_select && menu->hWnd) { struct menu_item *ip = &menu->items[menu->FocusedItem]; send_message( owner, WM_MENUSELECT, @@ -3219,7 +3227,7 @@ static void select_item( HWND owner, HMENU hmenu, UINT index, BOOL send_select, (LPARAM)hmenu ); } } - else if (send_select) + else if (send_select && menu->hWnd) { if (topmenu) { @@ -3234,7 +3242,9 @@ static void select_item( HWND owner, HMENU hmenu, UINT index, BOOL send_select, } } } - NtUserReleaseDC( menu->hWnd, hdc ); + + if (hdc) + NtUserReleaseDC( menu->hWnd, hdc ); }
/***********************************************************************
From: Vladislav Timonin timoninvlad@yandex.ru
--- dlls/user32/tests/Makefile.in | 2 +- dlls/user32/tests/menu.c | 169 ++++++++++++++++++++++++++++++ dlls/user32/tests/resource.rc | 3 + dlls/user32/tests/user32.manifest | 16 +++ dlls/win32u/menu.c | 4 + 5 files changed, 193 insertions(+), 1 deletion(-) create mode 100644 dlls/user32/tests/user32.manifest
diff --git a/dlls/user32/tests/Makefile.in b/dlls/user32/tests/Makefile.in index 33c7f13f12d..4bf8e8dad4b 100644 --- a/dlls/user32/tests/Makefile.in +++ b/dlls/user32/tests/Makefile.in @@ -1,5 +1,5 @@ TESTDLL = user32.dll -IMPORTS = user32 gdi32 advapi32 hid imm32 setupapi +IMPORTS = user32 gdi32 advapi32 hid imm32 setupapi comctl32
C_SRCS = \ broadcast.c \ diff --git a/dlls/user32/tests/menu.c b/dlls/user32/tests/menu.c index 9cd24141ad5..95894efc3d2 100644 --- a/dlls/user32/tests/menu.c +++ b/dlls/user32/tests/menu.c @@ -30,6 +30,7 @@ #include "winbase.h" #include "wingdi.h" #include "winuser.h" +#include "commctrl.h"
#include "wine/test.h"
@@ -2454,6 +2455,10 @@ static void test_menu_input(void) { while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE)) DispatchMessageA(&msg); } SetCursorPos(orig_pos.x, orig_pos.y); + + DestroyMenu(hMenus[3]); + DestroyMenu(hMenus[2]); + DestroyMenu(hMenus[1]); DestroyWindow(hWnd); }
@@ -2614,6 +2619,23 @@ static void test_menu_hilitemenuitem( void ) ok(!(GetMenuState(hPopupMenu, 2, MF_BYPOSITION) & MF_HILITE), "HiliteMenuItem: Item 3 is hilited\n");
+ /* deleting an off-screen menu item doesn't reset hilite */ + + SetLastError(0xdeadbeef); + ok(HiliteMenuItem(hWnd, hPopupMenu, 0, MF_HILITE | MF_BYPOSITION), + "HiliteMenuItem: call should not have failed.\n"); + ok(GetLastError() == 0xdeadbeef, + "HiliteMenuItem: expected error 0xdeadbeef, got: %ld\n", GetLastError()); + ok(GetMenuState(hPopupMenu, 0, MF_BYPOSITION) & MF_HILITE, + "HiliteMenuItem: Item 1 is not hilited\n"); + + ok(DeleteMenu(hPopupMenu, 2, MF_BYPOSITION), + "DeleteMenu: call should have succeeded.\n"); + ok(GetMenuState(hPopupMenu, 0, MF_BYPOSITION) & MF_HILITE, + "HiliteMenuItem: Item 1 is not hilited\n"); + ok(!(GetMenuState(hPopupMenu, 1, MF_BYPOSITION) & MF_HILITE), + "HiliteMenuItem: Item 2 is hilited\n"); + DestroyWindow(hWnd); }
@@ -4221,6 +4243,152 @@ if (0) /* FIXME: uncomment once Wine is fixed */ { DeleteObject(hbmp); }
+static void flush_events(void) +{ + MSG msg; + int diff = 200; + int min_timeout = 100; + DWORD time = GetTickCount() + diff; + + while (diff > 0) + { + if (MsgWaitForMultipleObjects( 0, NULL, FALSE, min_timeout, QS_ALLINPUT ) == WAIT_TIMEOUT) break; + while (PeekMessageA( &msg, 0, 0, 0, PM_REMOVE )) DispatchMessageA( &msg ); + diff = time - GetTickCount(); + } +} + +static DWORD WINAPI test_menu_mutation_thread(LPVOID lpParameter) +{ + HANDLE hWnd = lpParameter; + HMENU popup_menu = hMenus[2]; + int elapsed; + + /* add an item to menu and select it */ + AppendMenuA(popup_menu, MF_STRING, 0, "Item 1"); + PostMessageA(hWnd, WM_USER, 0, 0); /* set focus to split button */ + send_key(VK_DOWN); /* open the menu */ + send_key(VK_DOWN); /* hilite the 1st item */ + send_key(VK_RETURN); /* select it */ + flush_events(); + + /* remove selected item and open the empty menu */ + RemoveMenu(popup_menu, 0, MF_BYPOSITION); + PostMessageA(hWnd, WM_USER, 0, 0); + send_key(VK_DOWN); + send_key(VK_ESCAPE); + flush_events(); + ok(!bMenuVisible, "menu is open\n"); + + /* add item back and make sure menu opens again */ + AppendMenuA(popup_menu, MF_STRING, 0, "Item 1"); + PostMessageA(hWnd, WM_USER, 0, 0); + send_key(VK_DOWN); + /* wait for the menu to show up */ + elapsed = 0; + while (!bMenuVisible) + { + if (elapsed > 200) + break; + elapsed += 20; + Sleep(20); + } + ok(bMenuVisible, "menu did not open\n"); + send_key(VK_ESCAPE); + + return 0; +} + +static LRESULT CALLBACK menu_mutation_wndproc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam ) +{ + + switch (msg) { + case WM_NOTIFY: + { + NMHDR *nmhdr = (NMHDR *)lParam; + if (nmhdr && nmhdr->code == BCN_DROPDOWN) + { + NMBCDROPDOWN* dropdown = (NMBCDROPDOWN *)lParam; + HMENU menu; + POINT pt = { .x = dropdown->rcButton.left, + .y = dropdown->rcButton.bottom, }; + + menu = (HMENU)GetWindowLongPtrA(dropdown->hdr.hwndFrom, GWLP_USERDATA); + ClientToScreen(dropdown->hdr.hwndFrom, &pt); + TrackPopupMenu(menu, TPM_LEFTALIGN | TPM_TOPALIGN, pt.x, pt.y, 0, hWnd, NULL); + return 1; + } + + break; + } + case WM_ENTERMENULOOP: + bMenuVisible = TRUE; + break; + case WM_EXITMENULOOP: + bMenuVisible = FALSE; + break; + } + + return DefWindowProcA(hWnd, msg, wParam, lParam); +} + +static void test_menu_mutation(void) { + MSG msg; + WNDCLASSA wclass; + HINSTANCE hInstance = GetModuleHandleA( NULL ); + HANDLE hThread, hWnd, split_button; + DWORD tid; + ATOM aclass; + + wclass.lpszClassName = "MenuMutationTestClass"; + wclass.style = CS_HREDRAW | CS_VREDRAW; + wclass.lpfnWndProc = menu_mutation_wndproc; + wclass.hInstance = hInstance; + wclass.hIcon = LoadIconA( 0, (LPCSTR)IDI_APPLICATION ); + wclass.hCursor = LoadCursorA( 0, (LPCSTR)IDC_ARROW ); + wclass.hbrBackground = (HBRUSH)( COLOR_WINDOW + 1 ); + wclass.lpszMenuName = 0; + wclass.cbClsExtra = 0; + wclass.cbWndExtra = 0; + aclass = RegisterClassA( &wclass ); + ok (aclass, "MenuMutationTest class not created\n"); + if (!aclass) return; + hWnd = CreateWindowA( wclass.lpszClassName, "MenuMutationTest", + WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0, + 400, 200, NULL, NULL, hInstance, NULL); + ok (hWnd != NULL, "MenuMutationTest window not created\n"); + if (!hWnd) return; + + hMenus[2] = CreatePopupMenu(); + + split_button = CreateWindowA(WC_BUTTONA, " ", + WS_CHILD | WS_VISIBLE | BS_SPLITBUTTON, + 0, 0, 50, 30, + hWnd, 0, GetModuleHandleA( NULL ), NULL); + SetWindowLongPtrA(split_button, GWLP_USERDATA, (LONG_PTR)hMenus[2]); + + ShowWindow(hWnd, SW_SHOW); + UpdateWindow(hWnd); + + hThread = CreateThread(NULL, 0, test_menu_mutation_thread, hWnd, 0, &tid); + while (1) + { + if (WAIT_TIMEOUT != WaitForSingleObject(hThread, 50)) + break; + + while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE)) { + if (msg.message == WM_USER && msg.hwnd == hWnd) + SetFocus(split_button); + + DispatchMessageA(&msg); + } + } + + DestroyMenu(hMenus[2]); + DestroyWindow(split_button); + DestroyWindow(hWnd); +} + START_TEST(menu) { register_menu_check_class(); @@ -4253,4 +4421,5 @@ START_TEST(menu) test_menu_circref(); test_emptypopup(); test_AppendMenu(); + test_menu_mutation(); } diff --git a/dlls/user32/tests/resource.rc b/dlls/user32/tests/resource.rc index a957e50689d..d379738c1f2 100644 --- a/dlls/user32/tests/resource.rc +++ b/dlls/user32/tests/resource.rc @@ -286,3 +286,6 @@ BEGIN DEFPUSHBUTTON "OK",IDOK,129,7,50,14 PUSHBUTTON "Cancel",IDCANCEL,129,24,50,14 END + +/* @makedep: user32.manifest */ +1 RT_MANIFEST user32.manifest diff --git a/dlls/user32/tests/user32.manifest b/dlls/user32/tests/user32.manifest new file mode 100644 index 00000000000..0d2ee44e178 --- /dev/null +++ b/dlls/user32/tests/user32.manifest @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> +<assemblyIdentity type="win32" name="Wine.user32.Test" version="0.0.0.0"/> +<dependency> + <dependentAssembly> + <assemblyIdentity + type="win32" + name="Microsoft.Windows.Common-Controls" + version="6.0.0.0" + processorArchitecture="*" + publicKeyToken="6595b64144ccf1df" + language="*" + /> + </dependentAssembly> +</dependency> +</assembly> diff --git a/dlls/win32u/menu.c b/dlls/win32u/menu.c index 50ff451bf3e..1b98f6b8de0 100644 --- a/dlls/win32u/menu.c +++ b/dlls/win32u/menu.c @@ -1370,11 +1370,15 @@ BOOL WINAPI NtUserRemoveMenu( HMENU handle, UINT id, UINT flags ) { free( menu->items ); menu->items = NULL; + menu->FocusedItem = NO_SELECTED_ITEM; } else { struct menu_item *new_items, *item = &menu->items[pos];
+ if (menu->FocusedItem >= menu->nItems) + menu->FocusedItem = NO_SELECTED_ITEM; + while (pos < menu->nItems) { *item = item[1];
Hi,
It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated.
The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details:
The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=127006
Your paranoid android.
=== w7u_2qxl (32 bit report) ===
user32: class.c:977: Test failed: expected 6, got 4 class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF013A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF013C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF0146) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF0142) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF0140) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (FFFF0148) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 74490000/75F50000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 74490000/75F50000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 74490000/75F50000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 74490000/75F50000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 74490000/75F50000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 74490000/75F50000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 74490000/75F50000 for class EDIT class.c:357: Test failed: Wrong GCL instance 74490000/75F50000 for class EDIT
=== w7u_adm (32 bit report) ===
user32: class.c:977: Test failed: expected 6, got 4 class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF0155) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0157) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF0159) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF015B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF015D) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (FFFF015F) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 746A0000/75F30000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 746A0000/75F30000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 746A0000/75F30000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 746A0000/75F30000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 746A0000/75F30000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 746A0000/75F30000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 746A0000/75F30000 for class EDIT class.c:357: Test failed: Wrong GCL instance 746A0000/75F30000 for class EDIT
=== w7u_el (32 bit report) ===
user32: class.c:977: Test failed: expected 6, got 4 class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF0187) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0189) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF018B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF018F) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF0191) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (FFFF0193) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 73FD0000/774A0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 73FD0000/774A0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 73FD0000/774A0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 73FD0000/774A0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 73FD0000/774A0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 73FD0000/774A0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 73FD0000/774A0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 73FD0000/774A0000 for class EDIT
=== w8 (32 bit report) ===
user32: class.c:977: Test failed: expected 6, got 4 class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF00A9) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0065) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF013B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF0129) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF0177) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (FFFF0137) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 72BF0000/74B20000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 72BF0000/74B20000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 72BF0000/74B20000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 72BF0000/74B20000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 72BF0000/74B20000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 72BF0000/74B20000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 72BF0000/74B20000 for class EDIT class.c:357: Test failed: Wrong GCL instance 72BF0000/74B20000 for class EDIT
=== w8adm (32 bit report) ===
user32: class.c:977: Test failed: expected 6, got 4 class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF008D) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF00BF) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF019F) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF01C3) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF01B5) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (FFFF01BB) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 73250000/772E0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 73250000/772E0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 73250000/772E0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 73250000/772E0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 73250000/772E0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 73250000/772E0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 73250000/772E0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 73250000/772E0000 for class EDIT
=== w864 (32 bit report) ===
user32: class.c:977: Test failed: expected 6, got 4 class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF018F) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF01AD) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF0087) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF009D) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF01B9) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (FFFF01B1) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 73A60000/75590000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 73A60000/75590000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 73A60000/75590000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 73A60000/75590000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 73A60000/75590000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 73A60000/75590000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 73A60000/75590000 for class EDIT class.c:357: Test failed: Wrong GCL instance 73A60000/75590000 for class EDIT
=== w1064v1507 (32 bit report) ===
user32: class.c:977: Test failed: expected 6, got 4 class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF013F) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0141) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF0143) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF0145) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF0147) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (FFFF0149) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 741A0000/761D0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 741A0000/761D0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 741A0000/761D0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 741A0000/761D0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 741A0000/761D0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 741A0000/761D0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 741A0000/761D0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 741A0000/761D0000 for class EDIT
=== w1064v1809 (32 bit report) ===
user32: class.c:977: Test failed: expected 6, got 4 class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF0207) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF02EB) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF02FB) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF02F7) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF02FD) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (FFFF02FF) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 743D0000/77420000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 743D0000/77420000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 743D0000/77420000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 743D0000/77420000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 743D0000/77420000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 743D0000/77420000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 743D0000/77420000 for class EDIT class.c:357: Test failed: Wrong GCL instance 743D0000/77420000 for class EDIT
=== w1064_tsign (32 bit report) ===
user32: class.c:977: Test failed: expected 6, got 4 class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF027B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0279) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF0066) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF0058) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF0068) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (FFFF0064) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 753C0000/76390000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 753C0000/76390000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 753C0000/76390000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 753C0000/76390000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 753C0000/76390000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 753C0000/76390000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 753C0000/76390000 for class EDIT class.c:357: Test failed: Wrong GCL instance 753C0000/76390000 for class EDIT
=== w10pro64 (32 bit report) ===
user32: class.c:977: Test failed: expected 6, got 4 class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF0046) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF022C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF0230) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF022E) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF0232) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (FFFF01DC) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 74A50000/758D0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 74A50000/758D0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 74A50000/758D0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 74A50000/758D0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 74A50000/758D0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 74A50000/758D0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 74A50000/758D0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 74A50000/758D0000 for class EDIT
=== w864 (64 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF01B9) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF01B5) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF0163) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF01B1) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF00B3) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (00000000FFFF00D5) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00007FFDCA460000/00007FFDCD3A0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00007FFDCA460000/00007FFDCD3A0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00007FFDCA460000/00007FFDCD3A0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFDCA460000/00007FFDCD3A0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFDCA460000/00007FFDCD3A0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFDCA460000/00007FFDCD3A0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00007FFDCA460000/00007FFDCD3A0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00007FFDCA460000/00007FFDCD3A0000 for class EDIT
=== w1064v1507 (64 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF00E3) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF00A1) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF013D) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF013F) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF0141) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (00000000FFFF0143) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00007FF9191F0000/00007FF926BE0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00007FF9191F0000/00007FF926BE0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00007FF9191F0000/00007FF926BE0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FF9191F0000/00007FF926BE0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FF9191F0000/00007FF926BE0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FF9191F0000/00007FF926BE0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00007FF9191F0000/00007FF926BE0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00007FF9191F0000/00007FF926BE0000 for class EDIT
=== w1064v1809 (64 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF02F1) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF01F1) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF02DB) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF02FB) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF0211) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (00000000FFFF02D5) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00007FFAB09F0000/00007FFAC0EF0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00007FFAB09F0000/00007FFAC0EF0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00007FFAB09F0000/00007FFAC0EF0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFAB09F0000/00007FFAC0EF0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFAB09F0000/00007FFAC0EF0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFAB09F0000/00007FFAC0EF0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00007FFAB09F0000/00007FFAC0EF0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00007FFAB09F0000/00007FFAC0EF0000 for class EDIT
=== w1064_2qxl (64 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF0242) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF0273) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF0235) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF014F) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF0187) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (00000000FFFF022B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00007FF8D30D0000/00007FF8EB5F0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00007FF8D30D0000/00007FF8EB5F0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00007FF8D30D0000/00007FF8EB5F0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FF8D30D0000/00007FF8EB5F0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FF8D30D0000/00007FF8EB5F0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FF8D30D0000/00007FF8EB5F0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00007FF8D30D0000/00007FF8EB5F0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00007FF8D30D0000/00007FF8EB5F0000 for class EDIT
=== w1064_adm (64 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF0267) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF027D) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF027F) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF026F) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF01D8) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (00000000FFFF0271) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00007FFF8FEE0000/00007FFFA7DB0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00007FFF8FEE0000/00007FFFA7DB0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00007FFF8FEE0000/00007FFFA7DB0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFF8FEE0000/00007FFFA7DB0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFF8FEE0000/00007FFFA7DB0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFF8FEE0000/00007FFFA7DB0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00007FFF8FEE0000/00007FFFA7DB0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00007FFF8FEE0000/00007FFFA7DB0000 for class EDIT
=== w1064_tsign (64 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF0066) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF0058) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF004A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF006C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF006A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (00000000FFFF0070) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00007FFAF8BA0000/00007FFB12700000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00007FFAF8BA0000/00007FFB12700000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00007FFAF8BA0000/00007FFB12700000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFAF8BA0000/00007FFB12700000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFAF8BA0000/00007FFB12700000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFAF8BA0000/00007FFB12700000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00007FFAF8BA0000/00007FFB12700000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00007FFAF8BA0000/00007FFB12700000 for class EDIT
=== w10pro64 (64 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF015B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF021E) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF005A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF022C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF022E) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (00000000FFFF0234) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00007FFCDD3C0000/00007FFCF14A0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00007FFCDD3C0000/00007FFCF14A0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00007FFCDD3C0000/00007FFCF14A0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFCDD3C0000/00007FFCF14A0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFCDD3C0000/00007FFCF14A0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFCDD3C0000/00007FFCF14A0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00007FFCDD3C0000/00007FFCF14A0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00007FFCDD3C0000/00007FFCF14A0000 for class EDIT
=== w10pro64_en_AE_u8 (64 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF037B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF030E) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF0310) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF0308) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF00C2) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (00000000FFFF0312) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00007FF98C9F0000/00007FF99D7F0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00007FF98C9F0000/00007FF99D7F0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00007FF98C9F0000/00007FF99D7F0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FF98C9F0000/00007FF99D7F0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FF98C9F0000/00007FF99D7F0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FF98C9F0000/00007FF99D7F0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00007FF98C9F0000/00007FF99D7F0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00007FF98C9F0000/00007FF99D7F0000 for class EDIT
=== w10pro64_ar (64 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF02EA) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF02E6) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF01E0) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF01E2) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF01F4) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (00000000FFFF022C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00007FFC3C0A0000/00007FFC50F10000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00007FFC3C0A0000/00007FFC50F10000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00007FFC3C0A0000/00007FFC50F10000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFC3C0A0000/00007FFC50F10000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFC3C0A0000/00007FFC50F10000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFC3C0A0000/00007FFC50F10000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00007FFC3C0A0000/00007FFC50F10000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00007FFC3C0A0000/00007FFC50F10000 for class EDIT
=== w10pro64_ja (64 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF0346) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF0356) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF0360) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF035A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF0354) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (00000000FFFF0362) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00007FFA2EE90000/00007FFA41F20000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00007FFA2EE90000/00007FFA41F20000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00007FFA2EE90000/00007FFA41F20000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFA2EE90000/00007FFA41F20000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFA2EE90000/00007FFA41F20000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFA2EE90000/00007FFA41F20000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00007FFA2EE90000/00007FFA41F20000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00007FFA2EE90000/00007FFA41F20000 for class EDIT
=== w10pro64_zh_CN (64 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ScrollBar has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF0397) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF0399) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF039B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF039D) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF039F) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:814: Test failed: procA should not be a handle for ScrollBar (00000000FFFF03A1) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ScrollBar class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00007FFD24E60000/00007FFD3BB40000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00007FFD24E60000/00007FFD3BB40000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00007FFD24E60000/00007FFD3BB40000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFD24E60000/00007FFD3BB40000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFD24E60000/00007FFD3BB40000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00007FFD24E60000/00007FFD3BB40000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00007FFD24E60000/00007FFD3BB40000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00007FFD24E60000/00007FFD3BB40000 for class EDIT
=== w7u_2qxl (32 bit report) ===
user32: 0650:clipboard: unhandled exception c0000005 at FFFF0153 0650:clipboard: unhandled exception c0000005 at FFFF0153 0650:clipboard: unhandled exception c0000005 at FFFF0153 0650:clipboard: unhandled exception c0000005 at FFFF0153 0650:clipboard: unhandled exception c0000005 at FFFF0153
=== w7u_adm (32 bit report) ===
user32: 0870:clipboard: unhandled exception c0000005 at FFFF0146 0870:clipboard: unhandled exception c0000005 at FFFF0146 0870:clipboard: unhandled exception c0000005 at FFFF0146 0870:clipboard: unhandled exception c0000005 at FFFF0146 0870:clipboard: unhandled exception c0000005 at FFFF0146
=== w7u_el (32 bit report) ===
user32: 0a54:clipboard: unhandled exception c0000005 at FFFF0161 0a54:clipboard: unhandled exception c0000005 at FFFF0161 0a54:clipboard: unhandled exception c0000005 at FFFF0161 0a54:clipboard: unhandled exception c0000005 at FFFF0161 0a54:clipboard: unhandled exception c0000005 at FFFF0161
=== w8 (32 bit report) ===
user32: 0b20:clipboard: unhandled exception c0000005 at FFFF009D 0b20:clipboard: unhandled exception c0000005 at FFFF009D 0b20:clipboard: unhandled exception c0000005 at FFFF009D 0b20:clipboard: unhandled exception c0000005 at FFFF009D 0b20:clipboard: unhandled exception c0000005 at FFFF009D
=== w8adm (32 bit report) ===
user32: 0af4:clipboard: unhandled exception c0000005 at FFFF01A7 0af4:clipboard: unhandled exception c0000005 at FFFF01A7 0af4:clipboard: unhandled exception c0000005 at FFFF01A7 0af4:clipboard: unhandled exception c0000005 at FFFF01A7 0af4:clipboard: unhandled exception c0000005 at FFFF01A7
=== w864 (32 bit report) ===
user32: 0be0:clipboard: unhandled exception c0000005 at FFFF0163
=== w1064v1507 (32 bit report) ===
user32: 04c4:clipboard: unhandled exception c0000005 at FFFF0095
=== w1064v1809 (32 bit report) ===
user32: 1c6c:clipboard: unhandled exception c0000005 at FFFF0211
=== w1064_tsign (32 bit report) ===
user32: 1d74:clipboard: unhandled exception c0000005 at FFFF01EB
=== w10pro64 (32 bit report) ===
user32: 1e1c:clipboard: unhandled exception c0000005 at FFFF0163
=== w864 (64 bit report) ===
user32: 0bbc:clipboard: unhandled exception c0000005 at 00000000FFFF0087
=== w1064v1507 (64 bit report) ===
user32: 09e0:clipboard: unhandled exception c0000005 at 00000000FFFF0095
=== w1064v1809 (64 bit report) ===
user32: 1ce0:clipboard: unhandled exception c0000005 at 00000000FFFF02E3
=== w1064_2qxl (64 bit report) ===
user32: 1d48:clipboard: unhandled exception c0000005 at 00000000FFFF027D
=== w1064_adm (64 bit report) ===
user32: 133c:clipboard: unhandled exception c0000005 at 00000000FFFF0045
=== w1064_tsign (64 bit report) ===
user32: 1d3c:clipboard: unhandled exception c0000005 at 00000000FFFF01E5
=== w10pro64 (64 bit report) ===
user32: 1df0:clipboard: unhandled exception c0000005 at 00000000FFFF0163
=== w10pro64_en_AE_u8 (64 bit report) ===
user32: 23f4:clipboard: unhandled exception c0000005 at 00000000FFFF02DA
=== w10pro64_ar (64 bit report) ===
user32: 1808:clipboard: unhandled exception c0000005 at 00000000FFFF011B
=== w10pro64_ja (64 bit report) ===
user32: 20b8:clipboard: unhandled exception c0000005 at 00000000FFFF0332
=== w10pro64_zh_CN (64 bit report) ===
user32: 0f68:clipboard: unhandled exception c0000005 at 00000000FFFF0365
=== w7u_2qxl (32 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000.
=== w7u_adm (32 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000.
=== w7u_el (32 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000.
=== w8 (32 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000.
=== w8adm (32 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000.
=== w864 (32 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000.
=== w1064v1507 (32 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000.
=== w1064v1809 (32 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000.
=== w1064_tsign (32 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000.
=== w10pro64 (32 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000.
=== w864 (64 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000.
=== w864 (testbot log) ===
WineRunTask.pl:error: The previous 1 run(s) terminated abnormally
=== w1064v1507 (64 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000.
=== w1064v1809 (64 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000.
=== w1064_2qxl (64 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000.
=== w1064_adm (64 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000.
=== w1064_tsign (64 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000.
=== w10pro64 (64 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000.
=== w10pro64_en_AE_u8 (64 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000.
=== w10pro64_ar (64 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000.
=== w10pro64_ja (64 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 36 combo.c:798: Test failed: Test 1, expected list height to be 0, got 36 combo.c:798: Test failed: Test 2, expected list height to be 0, got 36 combo.c:798: Test failed: Test 3, expected list height to be 18, got 36 combo.c:798: Test failed: Test 4, expected list height to be 18, got 36 combo.c:798: Test failed: Test 9, expected list height to be 0, got 180 combo.c:798: Test failed: Test 10, expected list height to be 0, got 180 combo.c:798: Test failed: Test 11, expected list height to be 0, got 180 combo.c:798: Test failed: Test 12, expected list height to be 18, got 180 combo.c:798: Test failed: Test 13, expected list height to be 18, got 180 combo.c:798: Test failed: Test 14, expected list height to be 36, got 180 combo.c:798: Test failed: Test 15, expected list height to be 54, got 180 combo.c:798: Test failed: Test 16, expected list height to be 54, got 180 combo.c:798: Test failed: Test 17, expected list height to be 72, got 180 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000.
=== w10pro64_zh_CN (64 bit report) ===
user32: combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 1, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 10, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 15, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000.
=== w7u_2qxl (32 bit report) ===
user32: 063c:dialog: unhandled exception c0000005 at FFFF0163 063c:dialog: unhandled exception c0000005 at FFFF0163
=== w7u_adm (32 bit report) ===
user32: 0864:dialog: unhandled exception c0000005 at FFFF0167 0864:dialog: unhandled exception c0000005 at FFFF0167
=== w7u_el (32 bit report) ===
user32: 0a60:dialog: unhandled exception c0000005 at FFFF0179 0a60:dialog: unhandled exception c0000005 at FFFF0179
=== w8 (32 bit report) ===
user32: 0b0c:dialog: unhandled exception c0000005 at FFFF0095 0b0c:dialog: unhandled exception c0000005 at FFFF0095
=== w8adm (32 bit report) ===
user32: 0abc:dialog: unhandled exception c0000005 at FFFF01C3 0abc:dialog: unhandled exception c0000005 at FFFF01C3
=== w864 (32 bit report) ===
user32: 0bcc:dialog: unhandled exception c0000005 at FFFF020B
=== w1064v1507 (32 bit report) ===
user32: 06a4:dialog: unhandled exception c0000005 at FFFF020F
=== w1064v1809 (32 bit report) ===
user32: 1c50:dialog: unhandled exception c0000005 at FFFF0207
=== w1064_tsign (32 bit report) ===
user32: 0d8c:dialog: unhandled exception c0000005 at FFFF0277
=== w10pro64 (32 bit report) ===
user32: 1e64:dialog: unhandled exception c0000005 at FFFF028D
=== w864 (64 bit report) ===
user32: 0bc4:dialog: unhandled exception c0000005 at 00000000FFFF020B
=== w1064v1507 (64 bit report) ===
user32: 0c34:dialog: unhandled exception c0000005 at 00000000FFFF0209
=== w1064v1809 (64 bit report) ===
user32: 1d08:dialog: unhandled exception c0000005 at 00000000FFFF02F5
=== w1064_2qxl (64 bit report) ===
user32: 1c84:dialog: unhandled exception c0000005 at 00000000FFFF0299
=== w1064_adm (64 bit report) ===
user32: 1320:dialog: unhandled exception c0000005 at 00000000FFFF0261
=== w1064_tsign (64 bit report) ===
user32: 0c2c:dialog: unhandled exception c0000005 at 00000000FFFF0275
=== w10pro64 (64 bit report) ===
user32: 1e78:dialog: unhandled exception c0000005 at 00000000FFFF0295
=== w10pro64_en_AE_u8 (64 bit report) ===
user32: 21cc:dialog: unhandled exception c0000005 at 00000000FFFF038B
=== w10pro64_ar (64 bit report) ===
user32: 23a8:dialog: unhandled exception c0000005 at 00000000FFFF0385
=== w10pro64_ja (64 bit report) ===
user32: 1f14:dialog: unhandled exception c0000005 at 00000000FFFF02D7
=== w10pro64_zh_CN (64 bit report) ===
user32: 2334:dialog: unhandled exception c0000005 at 00000000FFFF0399
=== w7u_2qxl (32 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 0, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 0, 1 079c:edit: unhandled exception c0000005 at FFFF014C
=== w7u_adm (32 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 0, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 0, 1 0860:edit: unhandled exception c0000005 at FFFF015F
=== w7u_el (32 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 0, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 0, 1 0a5c:edit: unhandled exception c0000005 at FFFF0161
=== w8 (32 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 1 0b44:edit: unhandled exception c0000005 at FFFF0093
=== w8adm (32 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 1 0af0:edit: unhandled exception c0000005 at FFFF0083
=== w864 (32 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 1 0bb8:edit: unhandled exception c0000005 at FFFF00A5
=== w1064v1507 (32 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 0 0d18:edit: unhandled exception c0000005 at FFFF00A3
=== w1064v1809 (32 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 0 edit.c:2082: Test failed: wrong height expected 16 got 17 edit.c:2083: Test failed: wrong height expected 16 got 18 edit.c:2084: Test failed: wrong height expected 16 got 26 edit.c:2092: Test failed: wrong height expected 16 got 17 edit.c:2093: Test failed: wrong height expected 16 got 19 edit.c:2095: Test failed: wrong height expected 16 got 18 edit.c:2103: Test failed: wrong height expected 16 got 17 edit.c:2105: Test failed: wrong height expected 16 got 24 edit.c:2113: Test failed: wrong height expected 16 got 17 edit.c:2115: Test failed: wrong height expected 16 got 24 edit.c:2126: Test failed: wrong height expected 16 got 17 edit.c:2127: Test failed: wrong height expected 16 got 18 edit.c:2128: Test failed: wrong height expected 16 got 26 edit.c:2136: Test failed: wrong height expected 16 got 17 edit.c:2137: Test failed: wrong height expected 16 got 19 edit.c:2139: Test failed: wrong height expected 16 got 18 edit.c:2147: Test failed: wrong height expected 16 got 17 edit.c:2149: Test failed: wrong height expected 16 got 24 edit.c:2157: Test failed: wrong height expected 16 got 17 edit.c:2159: Test failed: wrong height expected 16 got 24 1c70:edit: unhandled exception c0000005 at FFFF02F3
=== w1064_tsign (32 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 0 edit.c:2082: Test failed: wrong height expected 16 got 17 edit.c:2083: Test failed: wrong height expected 16 got 18 edit.c:2084: Test failed: wrong height expected 16 got 26 edit.c:2092: Test failed: wrong height expected 16 got 17 edit.c:2093: Test failed: wrong height expected 16 got 19 edit.c:2095: Test failed: wrong height expected 16 got 18 edit.c:2103: Test failed: wrong height expected 16 got 17 edit.c:2105: Test failed: wrong height expected 16 got 24 edit.c:2113: Test failed: wrong height expected 16 got 17 edit.c:2115: Test failed: wrong height expected 16 got 24 edit.c:2126: Test failed: wrong height expected 16 got 17 edit.c:2127: Test failed: wrong height expected 16 got 18 edit.c:2128: Test failed: wrong height expected 16 got 26 edit.c:2136: Test failed: wrong height expected 16 got 17 edit.c:2137: Test failed: wrong height expected 16 got 19 edit.c:2139: Test failed: wrong height expected 16 got 18 edit.c:2147: Test failed: wrong height expected 16 got 17 edit.c:2149: Test failed: wrong height expected 16 got 24 edit.c:2157: Test failed: wrong height expected 16 got 17 edit.c:2159: Test failed: wrong height expected 16 got 24 0434:edit: unhandled exception c0000005 at FFFF0273
=== w10pro64 (32 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 0 edit.c:2082: Test failed: wrong height expected 16 got 17 edit.c:2083: Test failed: wrong height expected 16 got 18 edit.c:2084: Test failed: wrong height expected 16 got 26 edit.c:2092: Test failed: wrong height expected 16 got 17 edit.c:2093: Test failed: wrong height expected 16 got 19 edit.c:2095: Test failed: wrong height expected 16 got 18 edit.c:2103: Test failed: wrong height expected 16 got 17 edit.c:2105: Test failed: wrong height expected 16 got 24 edit.c:2113: Test failed: wrong height expected 16 got 17 edit.c:2115: Test failed: wrong height expected 16 got 24 edit.c:2126: Test failed: wrong height expected 16 got 17 edit.c:2127: Test failed: wrong height expected 16 got 18 edit.c:2128: Test failed: wrong height expected 16 got 26 edit.c:2136: Test failed: wrong height expected 16 got 17 edit.c:2137: Test failed: wrong height expected 16 got 19 edit.c:2139: Test failed: wrong height expected 16 got 18 edit.c:2147: Test failed: wrong height expected 16 got 17 edit.c:2149: Test failed: wrong height expected 16 got 24 edit.c:2157: Test failed: wrong height expected 16 got 17 edit.c:2159: Test failed: wrong height expected 16 got 24 1dd8:edit: unhandled exception c0000005 at FFFF0234
=== w864 (64 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 1 0bec:edit: unhandled exception c0000005 at 00000000FFFF00A3
=== w1064v1507 (64 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 0 0dec:edit: unhandled exception c0000005 at 00000000FFFF0129
=== w1064v1809 (64 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 0 edit.c:2082: Test failed: wrong height expected 16 got 17 edit.c:2083: Test failed: wrong height expected 16 got 18 edit.c:2084: Test failed: wrong height expected 16 got 26 edit.c:2092: Test failed: wrong height expected 16 got 17 edit.c:2093: Test failed: wrong height expected 16 got 19 edit.c:2095: Test failed: wrong height expected 16 got 18 edit.c:2103: Test failed: wrong height expected 16 got 17 edit.c:2105: Test failed: wrong height expected 16 got 24 edit.c:2113: Test failed: wrong height expected 16 got 17 edit.c:2115: Test failed: wrong height expected 16 got 24 edit.c:2126: Test failed: wrong height expected 16 got 17 edit.c:2127: Test failed: wrong height expected 16 got 18 edit.c:2128: Test failed: wrong height expected 16 got 26 edit.c:2136: Test failed: wrong height expected 16 got 17 edit.c:2137: Test failed: wrong height expected 16 got 19 edit.c:2139: Test failed: wrong height expected 16 got 18 edit.c:2147: Test failed: wrong height expected 16 got 17 edit.c:2149: Test failed: wrong height expected 16 got 24 edit.c:2157: Test failed: wrong height expected 16 got 17 edit.c:2159: Test failed: wrong height expected 16 got 24 1c7c:edit: unhandled exception c0000005 at 00000000FFFF02F5
=== w1064_2qxl (64 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 0 edit.c:2082: Test failed: wrong height expected 16 got 17 edit.c:2083: Test failed: wrong height expected 16 got 18 edit.c:2084: Test failed: wrong height expected 16 got 26 edit.c:2092: Test failed: wrong height expected 16 got 17 edit.c:2093: Test failed: wrong height expected 16 got 19 edit.c:2095: Test failed: wrong height expected 16 got 18 edit.c:2103: Test failed: wrong height expected 16 got 17 edit.c:2105: Test failed: wrong height expected 16 got 24 edit.c:2113: Test failed: wrong height expected 16 got 17 edit.c:2115: Test failed: wrong height expected 16 got 24 edit.c:2126: Test failed: wrong height expected 16 got 17 edit.c:2127: Test failed: wrong height expected 16 got 18 edit.c:2128: Test failed: wrong height expected 16 got 26 edit.c:2136: Test failed: wrong height expected 16 got 17 edit.c:2137: Test failed: wrong height expected 16 got 19 edit.c:2139: Test failed: wrong height expected 16 got 18 edit.c:2147: Test failed: wrong height expected 16 got 17 edit.c:2149: Test failed: wrong height expected 16 got 24 edit.c:2157: Test failed: wrong height expected 16 got 17 edit.c:2159: Test failed: wrong height expected 16 got 24 1cb4:edit: unhandled exception c0000005 at 00000000FFFF004A
=== w1064_adm (64 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 0 edit.c:2082: Test failed: wrong height expected 16 got 17 edit.c:2083: Test failed: wrong height expected 16 got 18 edit.c:2084: Test failed: wrong height expected 16 got 26 edit.c:2092: Test failed: wrong height expected 16 got 17 edit.c:2093: Test failed: wrong height expected 16 got 19 edit.c:2095: Test failed: wrong height expected 16 got 18 edit.c:2103: Test failed: wrong height expected 16 got 17 edit.c:2105: Test failed: wrong height expected 16 got 24 edit.c:2113: Test failed: wrong height expected 16 got 17 edit.c:2115: Test failed: wrong height expected 16 got 24 edit.c:2126: Test failed: wrong height expected 16 got 17 edit.c:2127: Test failed: wrong height expected 16 got 18 edit.c:2128: Test failed: wrong height expected 16 got 26 edit.c:2136: Test failed: wrong height expected 16 got 17 edit.c:2137: Test failed: wrong height expected 16 got 19 edit.c:2139: Test failed: wrong height expected 16 got 18 edit.c:2147: Test failed: wrong height expected 16 got 17 edit.c:2149: Test failed: wrong height expected 16 got 24 edit.c:2157: Test failed: wrong height expected 16 got 17 edit.c:2159: Test failed: wrong height expected 16 got 24 1884:edit: unhandled exception c0000005 at 00000000FFFF0149
=== w1064_tsign (64 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 0 edit.c:2082: Test failed: wrong height expected 16 got 17 edit.c:2083: Test failed: wrong height expected 16 got 18 edit.c:2084: Test failed: wrong height expected 16 got 26 edit.c:2092: Test failed: wrong height expected 16 got 17 edit.c:2093: Test failed: wrong height expected 16 got 19 edit.c:2095: Test failed: wrong height expected 16 got 18 edit.c:2103: Test failed: wrong height expected 16 got 17 edit.c:2105: Test failed: wrong height expected 16 got 24 edit.c:2113: Test failed: wrong height expected 16 got 17 edit.c:2115: Test failed: wrong height expected 16 got 24 edit.c:2126: Test failed: wrong height expected 16 got 17 edit.c:2127: Test failed: wrong height expected 16 got 18 edit.c:2128: Test failed: wrong height expected 16 got 26 edit.c:2136: Test failed: wrong height expected 16 got 17 edit.c:2137: Test failed: wrong height expected 16 got 19 edit.c:2139: Test failed: wrong height expected 16 got 18 edit.c:2147: Test failed: wrong height expected 16 got 17 edit.c:2149: Test failed: wrong height expected 16 got 24 edit.c:2157: Test failed: wrong height expected 16 got 17 edit.c:2159: Test failed: wrong height expected 16 got 24 07e0:edit: unhandled exception c0000005 at 00000000FFFF01EB
=== w10pro64 (64 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 0 edit.c:2082: Test failed: wrong height expected 16 got 17 edit.c:2083: Test failed: wrong height expected 16 got 18 edit.c:2084: Test failed: wrong height expected 16 got 26 edit.c:2092: Test failed: wrong height expected 16 got 17 edit.c:2093: Test failed: wrong height expected 16 got 19 edit.c:2095: Test failed: wrong height expected 16 got 18 edit.c:2103: Test failed: wrong height expected 16 got 17 edit.c:2105: Test failed: wrong height expected 16 got 24 edit.c:2113: Test failed: wrong height expected 16 got 17 edit.c:2115: Test failed: wrong height expected 16 got 24 edit.c:2126: Test failed: wrong height expected 16 got 17 edit.c:2127: Test failed: wrong height expected 16 got 18 edit.c:2128: Test failed: wrong height expected 16 got 26 edit.c:2136: Test failed: wrong height expected 16 got 17 edit.c:2137: Test failed: wrong height expected 16 got 19 edit.c:2139: Test failed: wrong height expected 16 got 18 edit.c:2147: Test failed: wrong height expected 16 got 17 edit.c:2149: Test failed: wrong height expected 16 got 24 edit.c:2157: Test failed: wrong height expected 16 got 17 edit.c:2159: Test failed: wrong height expected 16 got 24 1e44:edit: unhandled exception c0000005 at 00000000FFFF0236
=== w10pro64_en_AE_u8 (64 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 1 edit.c:2082: Test failed: wrong height expected 16 got 17 edit.c:2083: Test failed: wrong height expected 16 got 18 edit.c:2084: Test failed: wrong height expected 16 got 26 edit.c:2092: Test failed: wrong height expected 16 got 17 edit.c:2093: Test failed: wrong height expected 16 got 19 edit.c:2095: Test failed: wrong height expected 16 got 18 edit.c:2103: Test failed: wrong height expected 16 got 17 edit.c:2105: Test failed: wrong height expected 16 got 24 edit.c:2113: Test failed: wrong height expected 16 got 17 edit.c:2115: Test failed: wrong height expected 16 got 24 edit.c:2126: Test failed: wrong height expected 16 got 17 edit.c:2127: Test failed: wrong height expected 16 got 18 edit.c:2128: Test failed: wrong height expected 16 got 26 edit.c:2136: Test failed: wrong height expected 16 got 17 edit.c:2137: Test failed: wrong height expected 16 got 19 edit.c:2139: Test failed: wrong height expected 16 got 18 edit.c:2147: Test failed: wrong height expected 16 got 17 edit.c:2149: Test failed: wrong height expected 16 got 24 edit.c:2157: Test failed: wrong height expected 16 got 17 edit.c:2159: Test failed: wrong height expected 16 got 24 2288:edit: unhandled exception c0000005 at 00000000FFFF02D6
=== w10pro64_ar (64 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 1 edit.c:2082: Test failed: wrong height expected 16 got 17 edit.c:2083: Test failed: wrong height expected 16 got 18 edit.c:2084: Test failed: wrong height expected 16 got 26 edit.c:2092: Test failed: wrong height expected 16 got 17 edit.c:2093: Test failed: wrong height expected 16 got 19 edit.c:2095: Test failed: wrong height expected 16 got 18 edit.c:2103: Test failed: wrong height expected 16 got 17 edit.c:2105: Test failed: wrong height expected 16 got 24 edit.c:2113: Test failed: wrong height expected 16 got 17 edit.c:2115: Test failed: wrong height expected 16 got 24 edit.c:2126: Test failed: wrong height expected 16 got 17 edit.c:2127: Test failed: wrong height expected 16 got 18 edit.c:2128: Test failed: wrong height expected 16 got 26 edit.c:2136: Test failed: wrong height expected 16 got 17 edit.c:2137: Test failed: wrong height expected 16 got 19 edit.c:2139: Test failed: wrong height expected 16 got 18 edit.c:2147: Test failed: wrong height expected 16 got 17 edit.c:2149: Test failed: wrong height expected 16 got 24 edit.c:2157: Test failed: wrong height expected 16 got 17 edit.c:2159: Test failed: wrong height expected 16 got 24 218c:edit: unhandled exception c0000005 at 00000000FFFF0070
=== w10pro64_ja (64 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:1722: Test failed: SimSun:0: expected 0, 0, got 1, 1 edit.c:2082: Test failed: wrong height expected 18 got 19 edit.c:2083: Test failed: wrong height expected 18 got 20 edit.c:2084: Test failed: wrong height expected 18 got 28 edit.c:2092: Test failed: wrong height expected 18 got 19 edit.c:2093: Test failed: wrong height expected 18 got 21 edit.c:2095: Test failed: wrong height expected 18 got 20 edit.c:2103: Test failed: wrong height expected 18 got 19 edit.c:2105: Test failed: wrong height expected 18 got 26 edit.c:2113: Test failed: wrong height expected 18 got 19 edit.c:2115: Test failed: wrong height expected 18 got 26 edit.c:2126: Test failed: wrong height expected 18 got 19 edit.c:2127: Test failed: wrong height expected 18 got 20 edit.c:2128: Test failed: wrong height expected 18 got 28 edit.c:2136: Test failed: wrong height expected 18 got 19 edit.c:2137: Test failed: wrong height expected 18 got 21 edit.c:2139: Test failed: wrong height expected 18 got 20 edit.c:2147: Test failed: wrong height expected 18 got 19 edit.c:2149: Test failed: wrong height expected 18 got 26 edit.c:2157: Test failed: wrong height expected 18 got 19 edit.c:2159: Test failed: wrong height expected 18 got 26 2060:edit: unhandled exception c0000005 at 00000000FFFF0385
=== w10pro64_zh_CN (64 bit report) ===
user32: edit.c:1370: Test failed: Expected 0, got 1 edit.c:1378: Test failed: Expected 0, got len 4 edit.c:1379: Test failed: Expected empty string, got Test edit.c:1722: Test failed: Tahoma:0: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:129: expected 1, 1, got 2, 1 edit.c:1722: Test failed: Tahoma:136: expected 1, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:128: expected 0, 1, got 2, 1 edit.c:1722: Test failed: MS PGothic:161: expected 1, 3, got 2, 1 edit.c:2082: Test failed: wrong height expected 16 got 17 edit.c:2083: Test failed: wrong height expected 16 got 18 edit.c:2084: Test failed: wrong height expected 16 got 26 edit.c:2092: Test failed: wrong height expected 16 got 17 edit.c:2093: Test failed: wrong height expected 16 got 19 edit.c:2095: Test failed: wrong height expected 16 got 18 edit.c:2103: Test failed: wrong height expected 16 got 17 edit.c:2105: Test failed: wrong height expected 16 got 24 edit.c:2113: Test failed: wrong height expected 16 got 17 edit.c:2115: Test failed: wrong height expected 16 got 24 edit.c:2126: Test failed: wrong height expected 16 got 17 edit.c:2127: Test failed: wrong height expected 16 got 18 edit.c:2128: Test failed: wrong height expected 16 got 26 edit.c:2136: Test failed: wrong height expected 16 got 17 edit.c:2137: Test failed: wrong height expected 16 got 19 edit.c:2139: Test failed: wrong height expected 16 got 18 edit.c:2147: Test failed: wrong height expected 16 got 17 edit.c:2149: Test failed: wrong height expected 16 got 24 edit.c:2157: Test failed: wrong height expected 16 got 17 edit.c:2159: Test failed: wrong height expected 16 got 24 2174:edit: unhandled exception c0000005 at 00000000FFFF0399
=== w7u_2qxl (32 bit report) ===
user32: input.c:746: Test failed: 0 (a4/0): 00 from 00 -> 80 unexpected input.c:746: Test failed: 0 (a4/0): 41 from 01 -> 00 unexpected 0148:input: unhandled exception c0000005 at FFFF0138 0148:input: unhandled exception c0000005 at FFFF0138 0148:input: unhandled exception c0000005 at FFFF0138 0148:input: unhandled exception c0000005 at FFFF0138 0148:input: unhandled exception c0000005 at FFFF0138 0148:input: unhandled exception c0000005 at FFFF0138
=== w7u_adm (32 bit report) ===
user32: 0878:input: unhandled exception c0000005 at FFFF014A 0878:input: unhandled exception c0000005 at FFFF014A 0878:input: unhandled exception c0000005 at FFFF014A 0878:input: unhandled exception c0000005 at FFFF014A 0878:input: unhandled exception c0000005 at FFFF014A 0878:input: unhandled exception c0000005 at FFFF014A
=== w7u_el (32 bit report) ===
user32: 0a60:input: unhandled exception c0000005 at FFFF0191 0a60:input: unhandled exception c0000005 at FFFF0191 0a60:input: unhandled exception c0000005 at FFFF0191 0a60:input: unhandled exception c0000005 at FFFF0191 0a60:input: unhandled exception c0000005 at FFFF0191 0a60:input: unhandled exception c0000005 at FFFF0191
=== w8 (32 bit report) ===
user32: 0af8:input: unhandled exception c0000005 at FFFF0129 0af8:input: unhandled exception c0000005 at FFFF0129 0af8:input: unhandled exception c0000005 at FFFF0129 0af8:input: unhandled exception c0000005 at FFFF0129 0af8:input: unhandled exception c0000005 at FFFF0129 0af8:input: unhandled exception c0000005 at FFFF0129
=== w8adm (32 bit report) ===
user32: 0acc:input: unhandled exception c0000005 at FFFF01AF 0acc:input: unhandled exception c0000005 at FFFF01AF 0acc:input: unhandled exception c0000005 at FFFF01AF 0acc:input: unhandled exception c0000005 at FFFF01AF 0acc:input: unhandled exception c0000005 at FFFF01AF 0acc:input: unhandled exception c0000005 at FFFF01AF
=== w864 (32 bit report) ===
user32: 0bc4:input: unhandled exception c0000005 at FFFF0097
=== w1064v1507 (32 bit report) ===
user32: 0494:input: unhandled exception c0000005 at FFFF009B
=== w1064v1809 (32 bit report) ===
user32: 1d8c:input: unhandled exception c0000005 at FFFF02F3
=== w1064_tsign (32 bit report) ===
user32: 1e00:input: unhandled exception c0000005 at FFFF023B
=== w10pro64 (32 bit report) ===
user32: 1e44:input: unhandled exception c0000005 at FFFF0236
=== w864 (64 bit report) ===
user32: 0bd0:input: unhandled exception c0000005 at 00000000FFFF0097
=== w1064v1507 (64 bit report) ===
user32: 0c50:input: unhandled exception c0000005 at 00000000FFFF0117
=== w1064v1809 (64 bit report) ===
user32: 1cfc:input: unhandled exception c0000005 at 00000000FFFF02F7
=== w1064_2qxl (64 bit report) ===
user32: 1cf4:input: unhandled exception c0000005 at 00000000FFFF0175
=== w1064_adm (64 bit report) ===
user32: 120c:input: unhandled exception c0000005 at 00000000FFFF026F
=== w1064_tsign (64 bit report) ===
user32: 0820:input: unhandled exception c0000005 at 00000000FFFF0273
=== w10pro64 (64 bit report) ===
user32: 1e98:input: unhandled exception c0000005 at 00000000FFFF010D
=== w10pro64_en_AE_u8 (64 bit report) ===
user32: 0fd0:input: unhandled exception c0000005 at 00000000FFFF02D0
=== w10pro64_ar (64 bit report) ===
user32: 21e8:input: unhandled exception c0000005 at 00000000FFFF0086
=== w10pro64_ja (64 bit report) ===
user32: 2088:input: unhandled exception c0000005 at 00000000FFFF0344
=== w10pro64_zh_CN (64 bit report) ===
user32: 2224:input: unhandled exception c0000005 at 00000000FFFF03A1
=== w7u_2qxl (32 bit report) ===
user32: listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w7u_adm (32 bit report) ===
user32: listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w7u_el (32 bit report) ===
user32: listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w8 (32 bit report) ===
user32: listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w8adm (32 bit report) ===
user32: listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w864 (32 bit report) ===
user32: listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2363: Test failed: Unexpected return value 8. listbox.c:2363: Test failed: Unexpected return value 8. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w1064v1507 (32 bit report) ===
user32: listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2363: Test failed: Unexpected return value 8. listbox.c:2363: Test failed: Unexpected return value 8. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w1064v1809 (32 bit report) ===
user32: listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2363: Test failed: Unexpected return value 8. listbox.c:2363: Test failed: Unexpected return value 8. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w1064_tsign (32 bit report) ===
user32: listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2363: Test failed: Unexpected return value 8. listbox.c:2363: Test failed: Unexpected return value 8. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w10pro64 (32 bit report) ===
user32: listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2363: Test failed: Unexpected return value 8. listbox.c:2363: Test failed: Unexpected return value 8. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w864 (64 bit report) ===
user32: listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w1064v1507 (64 bit report) ===
user32: listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w1064v1809 (64 bit report) ===
user32: listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w1064_2qxl (64 bit report) ===
user32: listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w1064_adm (64 bit report) ===
user32: listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w1064_tsign (64 bit report) ===
user32: listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w10pro64 (64 bit report) ===
user32: listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w10pro64_en_AE_u8 (64 bit report) ===
user32: listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w10pro64_ar (64 bit report) ===
user32: listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w10pro64_ja (64 bit report) ===
user32: listbox.c:233: Test failed: itemHeight 16 listbox.c:235: Test failed: itemHeight 16 listbox.c:237: Test failed: itemHeight 16 listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w10pro64_zh_CN (64 bit report) ===
user32: listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2019: Test failed: got 1 listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF
=== w7u_2qxl (32 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (122295 bytes)
=== w7u_adm (32 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (122870 bytes)
=== w7u_el (32 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (116791 bytes)
=== w8 (32 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (122412 bytes)
=== w8adm (32 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (122350 bytes)
=== w864 (32 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (122412 bytes)
=== w1064v1507 (32 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (125004 bytes)
=== w1064v1809 (32 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7579: Test failed: down to radio3: 10: the msg sequence is not complete: expected 0000 - actual 0084 msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (125707 bytes)
=== w1064_tsign (32 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7579: Test failed: down to radio3: 10: the msg sequence is not complete: expected 0000 - actual 0084 msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (124676 bytes)
=== w10pro64 (32 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7579: Test failed: down to radio3: 10: the msg sequence is not complete: expected 0000 - actual 0084 msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (124614 bytes)
=== w864 (64 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (128662 bytes)
=== w1064v1507 (64 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (131460 bytes)
=== w1064v1809 (64 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7579: Test failed: down to radio3: 10: the msg sequence is not complete: expected 0000 - actual 0084 msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (132420 bytes)
=== w1064_2qxl (64 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7579: Test failed: down to radio3: 10: the msg sequence is not complete: expected 0000 - actual 0084 msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (131698 bytes)
=== w1064_adm (64 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7579: Test failed: down to radio3: 10: the msg sequence is not complete: expected 0000 - actual 0084 msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (131142 bytes)
=== w1064_tsign (64 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7579: Test failed: down to radio3: 10: the msg sequence is not complete: expected 0000 - actual 0084 msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (131126 bytes)
=== w10pro64 (64 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (130562 bytes)
=== w10pro64_en_AE_u8 (64 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (125043 bytes)
=== w10pro64_ar (64 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7579: Test failed: down to radio3: 10: the msg sequence is not complete: expected 0000 - actual 0084 msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (125417 bytes)
=== w10pro64_ja (64 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xc0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7579: Test failed: down to radio3: 10: the msg sequence is not complete: expected 0000 - actual 000f msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (125162 bytes)
=== w10pro64_zh_CN (64 bit report) ===
user32: msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[0]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[0]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[1]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[1]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[2]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[2]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[3]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[3]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[4]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[4]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[5]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[5]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x7586 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 4: the msg sequence is not complete: expected 0000 - actual 000f msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[6]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[6]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6966: Test failed: button[7]: WM_SETTEXT on a visible button: 2: the msg 0x800c was expected, but got msg 0x000e instead msg.c:6974: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[7]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[8]: WM_SETTEXT on a visible button: 3: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[8]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x000e instead msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x800a was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x800c was expected, but got msg 0x000f instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 2: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6966: Test failed: button[9]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6974: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[9]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6895: Test failed: SetFocus(0) on a button: 3: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6895: Test failed: SetFocus(0) on a button: 4: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6895: Test failed: SetFocus(0) on a button: 5: the msg 0x0111 was expected, but got msg 0x000f instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 1: the msg 0x800a was expected, but got msg 0x007c instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 2: the msg 0x8000 was expected, but got msg 0x007d instead msg.c:6902: Test failed: BM_SETSTYLE on a button: 3: the msg 0x000f was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x800a was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg 0x8000 was expected, but got msg 0x0135 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 5: the msg sequence is not complete: expected 0000 - actual 002b msg.c:6966: Test failed: button[10]: WM_SETTEXT on a visible button: 2: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6974: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6983: Test failed: button[10]: WM_SETTEXT on an invisible button: 2: the msg sequence is not complete: expected 0000 - actual 800c msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x800a instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0009 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 5: the msg 0x0215 was expected, but got msg 0x8013 instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:7037: Test failed: button[10]: WM_SETFONT on a button: 3: the msg sequence is not complete: expected 0135 - actual 0000 msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7431: Test failed: BM_CLICK on auto-radio button: 1: in msg 0x0201 expecting lParam 0x0 got 0xe0034 msg.c:7431: Test failed: BM_CLICK on auto-radio button: 4: the msg 0x0138 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 6: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 7: the msg 0x00f3 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 8: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 10: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 11: the msg 0x00f1 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 14: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 16: the msg 0x0087 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 17: the msg 0x00f1 was expected, but got msg 0x800a instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 18: the msg 0x0138 was expected, but got msg 0x0087 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 20: the msg 0x0087 was expected, but got msg 0x007c instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x007d instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 22: the msg 0x0215 was expected, but got msg 0x7586 instead msg.c:7431: Test failed: BM_CLICK on auto-radio button: 23: the msg 0x0111 was expected, but got msg 0x800a instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 800a msg.c:7562: Test failed: IsDialogMessage(VK_DOWN): 5: the msg 0x0138 was expected, but got msg 0x0111 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 2: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 3: the msg 0x0111 was expected, but got msg 0x0318 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 4: the msg 0x0133 was expected, but got msg 0x0138 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 5: the msg 0x0101 was expected, but got msg 0x0133 instead msg.c:7991: Test failed: WM_KEYDOWN/VK_DOWN on a ComboBox: 6: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:8041: Test failed: SetFocus on a ComboBox: 0: the msg 0x0135 was expected, but got msg 0x0007 instead msg.c:8080: Test failed: CB_SETCURSEL on a ComboBox: 9: in msg 0x002b expecting lParam 0x100010f3 got 0x130010f3 msg.c:12735: Test failed: WM_LBUTTONDBLCLK on an edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0009 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12745: Test failed: WM_LBUTTONUP on an edit: 3: the msg sequence is not complete: expected 0215 - actual 0000 msg.c:12774: Test failed: WM_LBUTTONDBLCLK on multiline edit: 2: the msg sequence is not complete: expected 0000 - actual 8014 msg.c:12781: Test failed: WM_LBUTTONDOWN on multiline edit: 2: the msg 0x0009 was expected, but got msg 0x8014 instead msg.c:12645: Test failed: WM_IME_COMPOSITION: 11: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:15051: Test failed: CreateDialogParam_3: 3: the msg 0x0110 was expected, but got msg 0x0055 instead msg.c:15061: Test failed: CreateDialogParam_4: 8: the msg 0x0110 was expected, but got msg 0x0055 instead
Report validation errors: user32:msg prints too much data (124996 bytes)
=== w7u_2qxl (32 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (158,180)-(278,280) != rcScrollBar (158,180)-(158,180) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1
=== w7u_adm (32 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (33,55)-(153,155) != rcScrollBar (33,55)-(33,55) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1
=== w7u_el (32 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (158,180)-(278,280) != rcScrollBar (158,180)-(158,180) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1
=== w8 (32 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (86,109)-(206,209) != rcScrollBar (86,109)-(86,109) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1
=== w8adm (32 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (138,161)-(258,261) != rcScrollBar (138,161)-(138,161) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1
=== w864 (32 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (86,109)-(206,209) != rcScrollBar (86,109)-(86,109) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1
=== w1064v1507 (32 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (138,161)-(258,261) != rcScrollBar (138,161)-(138,161) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1
=== w1064v1809 (32 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (138,161)-(258,261) != rcScrollBar (138,161)-(138,161) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w1064_tsign (32 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (138,161)-(258,261) != rcScrollBar (138,161)-(138,161) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w10pro64 (32 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (34,57)-(154,157) != rcScrollBar (34,57)-(34,57) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w864 (64 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (86,109)-(206,209) != rcScrollBar (86,109)-(86,109) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1
=== w1064v1507 (64 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (138,161)-(258,261) != rcScrollBar (138,161)-(138,161) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1
=== w1064v1809 (64 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (138,161)-(258,261) != rcScrollBar (138,161)-(138,161) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w1064_2qxl (64 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (138,161)-(258,261) != rcScrollBar (138,161)-(138,161) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w1064_adm (64 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (164,187)-(284,287) != rcScrollBar (164,187)-(164,187) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w1064_tsign (64 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (138,161)-(258,261) != rcScrollBar (138,161)-(138,161) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w10pro64 (64 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (34,57)-(154,157) != rcScrollBar (34,57)-(34,57) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w10pro64_en_AE_u8 (64 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (112,135)-(232,235) != rcScrollBar (112,135)-(112,135) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w10pro64_ar (64 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (60,83)-(180,183) != rcScrollBar (60,83)-(60,83) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w10pro64_ja (64 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (60,83)-(180,183) != rcScrollBar (60,83)-(60,83) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w10pro64_zh_CN (64 bit report) ===
user32: scroll.c:95: Test failed: The scrollbar should be disabled. scroll.c:96: Test failed: The scrollbar window should be disabled. scroll.c:99: Test failed: The scrollbar should be enabled. scroll.c:104: Test failed: The scrollbar LTUP button should be disabled. scroll.c:107: Test failed: The scrollbar should be enabled. scroll.c:111: Test failed: The scrollbar RTDN button should be disabled. scroll.c:114: Test failed: The scrollbar should be enabled. scroll.c:131: Test failed: got 0 scroll.c:132: Test failed: The scrollbar window should be disabled. scroll.c:158: Test failed: The position should not be set. scroll.c:246: Test failed: WindowRect (112,135)-(232,235) != rcScrollBar (112,135)-(112,135) scroll.c:563: Test failed: scroll bar enabled scroll.c:577: Test failed: scroll bar enabled scroll.c:585: Test failed: scroll bar enabled scroll.c:617: Test failed: Unexpected enabled state. scroll.c:627: Test failed: Unexpected enabled state. scroll.c:650: Test failed: Unexpected enabled state. scroll.c:735: Test failed: SetScrollPos returned 2 scroll.c:739: Test failed: SetScrollPos returned 1 scroll.c:759: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:776: Test failed: SBM_GETSCROLLBARINFO returned 1 scroll.c:816: Test failed: style 0x8: Expected color 0xccbbaa, got 0xf0f0f0. scroll.c:816: Test failed: style 0x10: Expected color 0xccbbaa, got 0xf0f0f0.
=== w7u_2qxl (32 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w7u_adm (32 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w7u_el (32 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w8 (32 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w8adm (32 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w864 (32 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w1064v1507 (32 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w1064v1809 (32 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w1064_tsign (32 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w10pro64 (32 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w10pro64 (testbot log) ===
WineRunTask.pl:error: The previous 1 run(s) terminated abnormally
=== w864 (64 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w1064v1507 (64 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w1064v1809 (64 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w1064_2qxl (64 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w1064_adm (64 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w1064_tsign (64 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w10pro64 (64 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w10pro64_en_AE_u8 (64 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w10pro64_ar (64 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w10pro64_ja (64 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w10pro64_zh_CN (64 bit report) ===
user32: static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44
=== w7u_2qxl (32 bit report) ===
user32: 07d0:win: unhandled exception c0000005 at FFFF015D 07d0:win: unhandled exception c0000005 at FFFF015D 07d0:win: unhandled exception c0000005 at FFFF015D win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 0002018A, expected 00000000 win.c:10341: Test failed: WindowFromPoint returned 0002018A, expected 00000000 win.c:10344: unhandled exception c0000005 in child process 07d0 win.c:10885: Test failed: msg.message = 2a3
=== w7u_adm (32 bit report) ===
user32: 087c:win: unhandled exception c0000005 at FFFF0157 087c:win: unhandled exception c0000005 at FFFF0157 087c:win: unhandled exception c0000005 at FFFF0157 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 000201A4, expected 00000000 win.c:10341: Test failed: WindowFromPoint returned 000201A4, expected 00000000 win.c:10344: unhandled exception c0000005 in child process 087c win.c:10885: Test failed: msg.message = 2a3
=== w7u_el (32 bit report) ===
user32: 0a6c:win: unhandled exception c0000005 at FFFF018D 0a6c:win: unhandled exception c0000005 at FFFF018D 0a6c:win: unhandled exception c0000005 at FFFF018D win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 000201A8, expected 00000000 win.c:10341: Test failed: WindowFromPoint returned 000201A8, expected 00000000 win.c:10344: unhandled exception c0000005 in child process 0a6c win.c:10885: Test failed: msg.message = 2a3
=== w8 (32 bit report) ===
user32: 0ac8:win: unhandled exception c0000005 at FFFF00B1 0ac8:win: unhandled exception c0000005 at FFFF00B1 0ac8:win: unhandled exception c0000005 at FFFF00B1 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 0005019E, expected 00000000 win.c:10341: Test failed: WindowFromPoint returned 0005019E, expected 00000000 win.c:10344: unhandled exception c0000005 in child process 0ac8 win.c:10885: Test failed: msg.message = 2a3
=== w8adm (32 bit report) ===
user32: 0ae8:win: unhandled exception c0000005 at FFFF0193 0ae8:win: unhandled exception c0000005 at FFFF0193 0ae8:win: unhandled exception c0000005 at FFFF0193 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 000201F4, expected 00000000 win.c:10341: Test failed: WindowFromPoint returned 000201F4, expected 00000000 win.c:10344: unhandled exception c0000005 in child process 0ae8 win.c:10885: Test failed: msg.message = 2a3
=== w864 (32 bit report) ===
user32: 0be0:win: unhandled exception c0000005 at FFFF0205 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 000201FE, expected 00000000 win.c:10341: Test failed: WindowFromPoint returned 000201FE, expected 00000000 win.c:10344: unhandled exception c000041d in child process 0be0 win.c:10885: Test failed: msg.message = 2a3
=== w1064v1507 (32 bit report) ===
user32: 0a18:win: unhandled exception c0000005 at FFFF0201 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 00020200, expected 00000000 win.c:10341: Test failed: WindowFromPoint returned 00020200, expected 00000000 win.c:10344: unhandled exception c000041d in child process 0a18 win.c:10885: Test failed: msg.message = 2a3
=== w1064v1809 (32 bit report) ===
user32: 1c84:win: unhandled exception c0000005 at FFFF02FF win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 000202C6, expected 00000000 win.c:10341: Test failed: WindowFromPoint returned 000202C6, expected 00000000 win.c:10344: unhandled exception c000041d in child process 1c84 win.c:10885: Test failed: msg.message = 2a3
=== w1064_tsign (32 bit report) ===
user32: 1674:win: unhandled exception c0000005 at FFFF01B3 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 00020246, expected 00000000 win.c:10341: Test failed: WindowFromPoint returned 00020246, expected 00000000 win.c:10344: unhandled exception c000041d in child process 1674
=== w10pro64 (32 bit report) ===
user32: 1eac:win: unhandled exception c0000005 at FFFF019B win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 0002028A, expected 00000000 win.c:10341: Test failed: WindowFromPoint returned 0002028A, expected 00000000 win.c:10344: unhandled exception c000041d in child process 1eac win.c:10885: Test failed: msg.message = 2a3
=== w864 (64 bit report) ===
user32: 0bc8:win: unhandled exception c0000005 at 00000000FFFF0205 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 0000000000070032, expected 0000000000000000 win.c:10341: Test failed: WindowFromPoint returned 0000000000070032, expected 0000000000000000 win.c:10344: unhandled exception c000041d in child process 0bc8 win.c:10885: Test failed: msg.message = 2a3
=== w1064v1507 (64 bit report) ===
user32: 0e04:win: unhandled exception c0000005 at 00000000FFFF00A1 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 0000000000020200, expected 0000000000000000 win.c:10341: Test failed: WindowFromPoint returned 0000000000020200, expected 0000000000000000 win.c:10344: unhandled exception c000041d in child process 0e04 win.c:10885: Test failed: msg.message = 2a3
=== w1064v1809 (64 bit report) ===
user32: 1c88:win: unhandled exception c0000005 at 00000000FFFF02EB win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 00000000000202C4, expected 0000000000000000 win.c:10341: Test failed: WindowFromPoint returned 00000000000202C4, expected 0000000000000000 win.c:10344: unhandled exception c000041d in child process 1c88
=== w1064_2qxl (64 bit report) ===
user32: 058c:win: unhandled exception c0000005 at 00000000FFFF0279 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 000000000002029C, expected 0000000000000000 win.c:10341: Test failed: WindowFromPoint returned 000000000002029C, expected 0000000000000000 win.c:10344: unhandled exception c000041d in child process 058c win.c:4579: Test failed: hwnd 0000000000030040/0000000000030040 message 0200 win.c:4583: Test failed: hwnd 0000000000030040/0000000000030040 message 0201 win.c:4592: Test failed: hwnd 0000000000110238/0000000000110238 message 0202 win.c:4595: Test failed: hwnd 0000000000110238/0000000000110238 message 0201
=== w1064_adm (64 bit report) ===
user32: 19e8:win: unhandled exception c0000005 at 00000000FFFF0149 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 0000000000020238, expected 0000000000000000 win.c:10341: Test failed: WindowFromPoint returned 0000000000020238, expected 0000000000000000 win.c:10344: unhandled exception c000041d in child process 19e8 win.c:10885: Test failed: msg.message = 2a3
=== w1064_tsign (64 bit report) ===
user32: 1658:win: unhandled exception c0000005 at 00000000FFFF027B win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 000000000002024E, expected 0000000000000000 win.c:10341: Test failed: WindowFromPoint returned 000000000002024E, expected 0000000000000000 win.c:10344: unhandled exception c000041d in child process 1658 win.c:10885: Test failed: msg.message = 2a3
=== w10pro64 (64 bit report) ===
user32: 1e54:win: unhandled exception c0000005 at 00000000FFFF0143 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 0000000000020284, expected 0000000000000000 win.c:10341: Test failed: WindowFromPoint returned 0000000000020284, expected 0000000000000000 win.c:10344: unhandled exception c000041d in child process 1e54 win.c:4400: Test failed: message 0200 available win.c:10885: Test failed: msg.message = 2a3
=== w10pro64_en_AE_u8 (64 bit report) ===
user32: 1eb4:win: unhandled exception c0000005 at 00000000FFFF034D win.c:189: Test failed: didn't get start_event win.c:10341: Test failed: WindowFromPoint returned 00000000000502E2, expected 0000000000000000 win.c:10344: unhandled exception c000041d in child process 1eb4 win.c:10885: Test failed: msg.message = 2a3
=== w10pro64_ar (64 bit report) ===
user32: win.c:2688: Test failed: style 0x200000: expected !100 win.c:2688: Test failed: style 0x300000: expected !100 21b0:win: unhandled exception c0000005 at 00000000FFFF0307 win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 0000000000020324, expected 0000000000000000 win.c:10341: Test failed: WindowFromPoint returned 0000000000020324, expected 0000000000000000 win.c:10344: unhandled exception c000041d in child process 21b0 win.c:10885: Test failed: msg.message = 2a3
=== w10pro64_ja (64 bit report) ===
user32: win.c:2688: Test failed: style 0x200000: expected !100 win.c:2688: Test failed: style 0x300000: expected !100 22fc:win: unhandled exception c0000005 at 00000000FFFF038F win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 00000000000203B2, expected 0000000000000000 win.c:10341: Test failed: WindowFromPoint returned 00000000000203B2, expected 0000000000000000 win.c:10344: unhandled exception c000041d in child process 22fc win.c:10885: Test failed: msg.message = 2a3
=== w10pro64_zh_CN (64 bit report) ===
user32: 2278:win: unhandled exception c0000005 at 00000000FFFF038F win.c:189: Test failed: didn't get start_event win.c:10331: Test failed: WindowFromPoint returned 00000000000203CC, expected 0000000000000000 win.c:10341: Test failed: WindowFromPoint returned 00000000000203CC, expected 0000000000000000 win.c:10344: unhandled exception c000041d in child process 2278 win.c:10885: Test failed: msg.message = 2a3
=== debian11 (32 bit report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF002A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0024) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF002B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000. dialog.c:655: Test failed: Button1's style not set to BS_DEFPUSHBUTTON dialog.c:656: Test failed: Button2's style not set to BS_PUSHBUTTON dialog.c:2327: Test failed: DialogBoxParamA returned -1, expected 0 Unhandled exception: page fault on execute access to 0xffff0027 in 32-bit code (0xffff0027). input: Timeout listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000e msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7406: Test failed: got 00000000 msg.c:7415: Test failed: got 00000000 msg.c:7440: Test failed: got 00000001 msg.c:7486: Test failed: got 00000000 msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 004e msg.c:7500: Test failed: got 00000000 msg.c:7510: Test failed: got 00000000 msg.c:7530: Test failed: got 00000000 Unhandled exception: page fault on read access to 0x00280108 in 32-bit code (0x688e5220). static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 win.c:189: Test failed: didn't get start_event win.c:10344: Test failed: Timed out waiting for the child process win.c:10264: Test failed: transparent window didn't get WM_NCHITTEST message win.c:10265: Test failed: button under static window didn't get WM_LBUTTONUP
=== debian11 (32 bit ar:MA report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF002A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0024) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF002B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000. dialog.c:655: Test failed: Button1's style not set to BS_DEFPUSHBUTTON dialog.c:656: Test failed: Button2's style not set to BS_PUSHBUTTON dialog.c:2327: Test failed: DialogBoxParamA returned -1, expected 0 Unhandled exception: page fault on execute access to 0xffff0027 in 32-bit code (0xffff0027). input: Timeout listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000e msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7406: Test failed: got 00000000 msg.c:7415: Test failed: got 00000000 msg.c:7440: Test failed: got 00000001 msg.c:7486: Test failed: got 00000000 msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 004e msg.c:7500: Test failed: got 00000000 msg.c:7510: Test failed: got 00000000 msg.c:7530: Test failed: got 00000000 Unhandled exception: page fault on read access to 0x00280108 in 32-bit code (0x688e5220). static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 win.c:189: Test failed: didn't get start_event win.c:10344: Test failed: Timed out waiting for the child process win.c:10264: Test failed: transparent window didn't get WM_NCHITTEST message win.c:10265: Test failed: button under static window didn't get WM_LBUTTONUP
=== debian11 (32 bit de report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF002A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0024) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF002B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000. dialog.c:655: Test failed: Button1's style not set to BS_DEFPUSHBUTTON dialog.c:656: Test failed: Button2's style not set to BS_PUSHBUTTON dialog.c:2327: Test failed: DialogBoxParamA returned -1, expected 0 Unhandled exception: page fault on execute access to 0xffff0027 in 32-bit code (0xffff0027). input: Timeout listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000e msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7406: Test failed: got 00000000 msg.c:7415: Test failed: got 00000000 msg.c:7440: Test failed: got 00000001 msg.c:7486: Test failed: got 00000000 msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 004e msg.c:7500: Test failed: got 00000000 msg.c:7510: Test failed: got 00000000 msg.c:7530: Test failed: got 00000000 Unhandled exception: page fault on read access to 0x00280108 in 32-bit code (0x688e5220). static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 win.c:189: Test failed: didn't get start_event win.c:10344: Test failed: Timed out waiting for the child process win.c:10264: Test failed: transparent window didn't get WM_NCHITTEST message win.c:10265: Test failed: button under static window didn't get WM_LBUTTONUP
=== debian11 (32 bit fr report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF002A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0024) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF002B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000. dialog.c:655: Test failed: Button1's style not set to BS_DEFPUSHBUTTON dialog.c:656: Test failed: Button2's style not set to BS_PUSHBUTTON dialog.c:2327: Test failed: DialogBoxParamA returned -1, expected 0 Unhandled exception: page fault on execute access to 0xffff0027 in 32-bit code (0xffff0027). input: Timeout listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000e msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7406: Test failed: got 00000000 msg.c:7415: Test failed: got 00000000 msg.c:7440: Test failed: got 00000001 msg.c:7486: Test failed: got 00000000 msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 004e msg.c:7500: Test failed: got 00000000 msg.c:7510: Test failed: got 00000000 msg.c:7530: Test failed: got 00000000 Unhandled exception: page fault on read access to 0x00280108 in 32-bit code (0x688e5220). static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 win.c:189: Test failed: didn't get start_event win.c:10344: Test failed: Timed out waiting for the child process win.c:10264: Test failed: transparent window didn't get WM_NCHITTEST message win.c:10265: Test failed: button under static window didn't get WM_LBUTTONUP
=== debian11 (32 bit he:IL report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF002A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0024) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF002B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000. dialog.c:655: Test failed: Button1's style not set to BS_DEFPUSHBUTTON dialog.c:656: Test failed: Button2's style not set to BS_PUSHBUTTON dialog.c:2327: Test failed: DialogBoxParamA returned -1, expected 0 Unhandled exception: page fault on execute access to 0xffff0027 in 32-bit code (0xffff0027). input: Timeout listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000e msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7406: Test failed: got 00000000 msg.c:7415: Test failed: got 00000000 msg.c:7440: Test failed: got 00000001 msg.c:7486: Test failed: got 00000000 msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 004e msg.c:7500: Test failed: got 00000000 msg.c:7510: Test failed: got 00000000 msg.c:7530: Test failed: got 00000000 Unhandled exception: page fault on read access to 0x00280108 in 32-bit code (0x688e5220). static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 win.c:189: Test failed: didn't get start_event win.c:10344: Test failed: Timed out waiting for the child process win.c:10264: Test failed: transparent window didn't get WM_NCHITTEST message win.c:10265: Test failed: button under static window didn't get WM_LBUTTONUP
=== debian11 (32 bit hi:IN report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF002A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0024) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF002B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000. dialog.c:655: Test failed: Button1's style not set to BS_DEFPUSHBUTTON dialog.c:656: Test failed: Button2's style not set to BS_PUSHBUTTON dialog.c:2327: Test failed: DialogBoxParamA returned -1, expected 0 Unhandled exception: page fault on execute access to 0xffff0027 in 32-bit code (0xffff0027). input: Timeout listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000e msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7406: Test failed: got 00000000 msg.c:7415: Test failed: got 00000000 msg.c:7440: Test failed: got 00000001 msg.c:7486: Test failed: got 00000000 msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 004e msg.c:7500: Test failed: got 00000000 msg.c:7510: Test failed: got 00000000 msg.c:7530: Test failed: got 00000000 Unhandled exception: page fault on read access to 0x00280108 in 32-bit code (0x688e5220). static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 win.c:189: Test failed: didn't get start_event win.c:10344: Test failed: Timed out waiting for the child process win.c:10264: Test failed: transparent window didn't get WM_NCHITTEST message win.c:10265: Test failed: button under static window didn't get WM_LBUTTONUP
=== debian11 (32 bit ja:JP report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF002A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0024) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF002B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT combo.c:798: Test failed: Test 0, expected list height to be 0, got 36 combo.c:798: Test failed: Test 2, expected list height to be 0, got 36 combo.c:798: Test failed: Test 3, expected list height to be 18, got 36 combo.c:798: Test failed: Test 4, expected list height to be 18, got 36 combo.c:798: Test failed: Test 9, expected list height to be 0, got 180 combo.c:798: Test failed: Test 11, expected list height to be 0, got 180 combo.c:798: Test failed: Test 12, expected list height to be 18, got 180 combo.c:798: Test failed: Test 13, expected list height to be 18, got 180 combo.c:798: Test failed: Test 14, expected list height to be 36, got 180 combo.c:798: Test failed: Test 16, expected list height to be 54, got 180 combo.c:798: Test failed: Test 17, expected list height to be 72, got 180 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000. dialog.c:655: Test failed: Button1's style not set to BS_DEFPUSHBUTTON dialog.c:656: Test failed: Button2's style not set to BS_PUSHBUTTON dialog.c:2327: Test failed: DialogBoxParamA returned -1, expected 0 Unhandled exception: page fault on execute access to 0xffff0027 in 32-bit code (0xffff0027). input: Timeout listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000e msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7406: Test failed: got 00000000 msg.c:7415: Test failed: got 00000000 msg.c:7440: Test failed: got 00000001 msg.c:7486: Test failed: got 00000000 msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 004e msg.c:7500: Test failed: got 00000000 msg.c:7510: Test failed: got 00000000 msg.c:7530: Test failed: got 00000000 Unhandled exception: page fault on read access to 0x00280108 in 32-bit code (0x688e5220). static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 win.c:189: Test failed: didn't get start_event win.c:10344: Test failed: Timed out waiting for the child process win.c:10264: Test failed: transparent window didn't get WM_NCHITTEST message win.c:10265: Test failed: button under static window didn't get WM_LBUTTONUP
=== debian11 (32 bit zh:CN report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF002A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0024) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF002B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000. dialog.c:655: Test failed: Button1's style not set to BS_DEFPUSHBUTTON dialog.c:656: Test failed: Button2's style not set to BS_PUSHBUTTON dialog.c:2327: Test failed: DialogBoxParamA returned -1, expected 0 Unhandled exception: page fault on execute access to 0xffff0027 in 32-bit code (0xffff0027). input: Timeout listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000e msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7406: Test failed: got 00000000 msg.c:7415: Test failed: got 00000000 msg.c:7440: Test failed: got 00000001 msg.c:7486: Test failed: got 00000000 msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 004e msg.c:7500: Test failed: got 00000000 msg.c:7510: Test failed: got 00000000 msg.c:7530: Test failed: got 00000000 Unhandled exception: page fault on read access to 0x00280108 in 32-bit code (0x688e5220). static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 win.c:189: Test failed: didn't get start_event win.c:10344: Test failed: Timed out waiting for the child process win.c:10264: Test failed: transparent window didn't get WM_NCHITTEST message win.c:10265: Test failed: button under static window didn't get WM_LBUTTONUP
=== debian11b (32 bit WoW report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (FFFF002A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (FFFF0024) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (FFFF002B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT class.c:357: Test failed: Wrong GCL instance 00400000/68880000 for class EDIT combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 00000000. combo.c:912: Test failed: 1: unexpected brush 00000000. combo.c:912: Test failed: 2: unexpected brush 00000000. combo.c:912: Test failed: 3: unexpected brush 00000000. combo.c:912: Test failed: 4: unexpected brush 00000000. combo.c:912: Test failed: 5: unexpected brush 00000000. combo.c:912: Test failed: 6: unexpected brush 00000000. combo.c:912: Test failed: 7: unexpected brush 00000000. dialog.c:655: Test failed: Button1's style not set to BS_DEFPUSHBUTTON dialog.c:656: Test failed: Button2's style not set to BS_PUSHBUTTON dialog.c:2327: Test failed: DialogBoxParamA returned -1, expected 0 Unhandled exception: page fault on execute access to 0xffff0027 in 32-bit code (0xffff0027). input: Timeout listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000e msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7406: Test failed: got 00000000 msg.c:7415: Test failed: got 00000000 msg.c:7440: Test failed: got 00000001 msg.c:7486: Test failed: got 00000000 msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 004e msg.c:7500: Test failed: got 00000000 msg.c:7510: Test failed: got 00000000 msg.c:7530: Test failed: got 00000000 msg.c:7564: Test failed: got 00000001 msg.c:7581: Test failed: got 00000001 msg.c:7600: Test failed: got 00000001 msg.c:7620: Test failed: got 00000001 msg.c:13967: Test failed: wrong tme.dwFlags 00000002, expected 00000000 msg.c:13967: Test failed: wrong tme.hwndTrack 002300E8, expected 00000000 msg.c:13967: Test failed: wrong tme.dwHoverTime 1, expected 0 static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 win.c:189: Test failed: didn't get start_event win.c:10344: Test failed: Timed out waiting for the child process win.c:10264: Test failed: transparent window didn't get WM_NCHITTEST message win.c:10265: Test failed: button under static window didn't get WM_LBUTTONUP
=== debian11b (64 bit WoW report) ===
user32: class.c:276: Test failed: System class Button has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class ComboBox has extra bits 4000 (0000408b/0000008b) class.c:276: Test failed: System class Edit has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ListBox has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class Static has extra bits 4000 (00004088/00000088) class.c:276: Test failed: System class ComboLBox has extra bits 24000 (00024808/00000808) class.c:814: Test failed: procA should not be a handle for Button (00000000FFFF002A) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Button class.c:814: Test failed: procA should not be a handle for Static (00000000FFFF0024) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class Static class.c:814: Test failed: procA should not be a handle for ComboBox (00000000FFFF002B) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboBox class.c:814: Test failed: procA should not be a handle for ComboLBox (00000000FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ComboLBox class.c:814: Test failed: procA should not be a handle for ListBox (00000000FFFF002C) class.c:821: Test failed: WM_GETTEXT W/A invalid return for class ListBox class.c:836: Test failed: Edit control class should have a Unicode wndproc class.c:876: Test failed: Edit control class should have a Unicode wndproc class.c:879: Test failed: Edit control shouldn't return an A wndproc handle class.c:880: Test failed: Edit control should return a wndproc handle class.c:884: Test failed: WM_GETTEXT invalid return class.c:886: Test failed: WM_GETTEXT invalid return class.c:642: Test failed: Wrong GCL instance 0000000000400000/0000000067CC0000 for class BUTTON class.c:643: Test failed: Wrong GCL instance 0000000000400000/0000000067CC0000 for class BUTTON class.c:644: Test failed: Wrong GCL instance 0000000000400000/0000000067CC0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 0000000000400000/0000000067CC0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 0000000000400000/0000000067CC0000 for class BUTTON class.c:357: Test failed: Wrong GCL instance 0000000000400000/0000000067CC0000 for class BUTTON class.c:655: Test failed: Button still exists class.c:659: Test failed: Wrong GCL instance 0000000000400000/0000000067CC0000 for class EDIT class.c:357: Test failed: Wrong GCL instance 0000000000400000/0000000067CC0000 for class EDIT combo.c:798: Test failed: Test 0, expected list height to be 0, got 32 combo.c:798: Test failed: Test 2, expected list height to be 16, got 32 combo.c:798: Test failed: Test 3, expected list height to be 16, got 32 combo.c:798: Test failed: Test 9, expected list height to be 0, got 160 combo.c:798: Test failed: Test 11, expected list height to be 16, got 160 combo.c:798: Test failed: Test 12, expected list height to be 16, got 160 combo.c:798: Test failed: Test 13, expected list height to be 32, got 160 combo.c:798: Test failed: Test 14, expected list height to be 48, got 160 combo.c:798: Test failed: Test 16, expected list height to be 64, got 160 combo.c:798: Test failed: Test 17, expected list height to be 64, got 160 combo.c:912: Test failed: 0: unexpected brush 0000000000000000. combo.c:912: Test failed: 1: unexpected brush 0000000000000000. combo.c:912: Test failed: 2: unexpected brush 0000000000000000. combo.c:912: Test failed: 3: unexpected brush 0000000000000000. combo.c:912: Test failed: 4: unexpected brush 0000000000000000. combo.c:912: Test failed: 5: unexpected brush 0000000000000000. combo.c:912: Test failed: 6: unexpected brush 0000000000000000. combo.c:912: Test failed: 7: unexpected brush 0000000000000000. dialog.c:655: Test failed: Button1's style not set to BS_DEFPUSHBUTTON dialog.c:656: Test failed: Button2's style not set to BS_PUSHBUTTON dialog.c:2327: Test failed: DialogBoxParamA returned -1, expected 0 Unhandled exception: page fault on execute access to 0x00000000ffff0027 in 64-bit code (0x000000ffff0027). input: Timeout listbox.c:718: Test failed: send message failed listbox.c:721: Test failed: height wrong listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:1974: Test failed: Unexpected error -559038737. listbox.c:2378: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2382: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2386: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2390: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2394: Test failed: GetLastError should return 0x57, got 0xDEADBEEF listbox.c:2398: Test failed: GetLastError should return 0x57, got 0xDEADBEEF msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[0]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[0]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[1]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[1]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[2]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[2]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[3]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[3]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7030: Test failed: button[4]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[4]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[5]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[5]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[6]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x00f1 instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[6]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[7]: WM_LBUTTONUP on a button: 2: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[7]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000e msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x0111 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:7030: Test failed: button[8]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7037: Test failed: button[8]: WM_SETFONT on a button: 3: the msg 0x0135 was expected, but got msg 0x004e instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0138 was expected, but got msg 0x8000 instead msg.c:6948: Test failed: BM_SETCHECK on a button: 1: the msg 0x8000 was expected, but got msg 0x007c instead msg.c:6948: Test failed: BM_SETCHECK on a button: 2: the msg sequence is not complete: expected 0000 - actual 007d msg.c:6962: Test failed: BM_SETCHECK on a button: 1: the msg 0x0138 was expected, but got msg 0x007c instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 3: the msg 0x0138 was expected, but got msg 0x000e instead msg.c:7037: Test failed: button[9]: WM_SETFONT on a button: 4: the msg sequence is not complete: expected 0000 - actual 000d msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6917: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 1: the msg 0x0135 was expected, but got msg 0x8000 instead msg.c:6931: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x002b was expected, but got msg 0x000f instead msg.c:7030: Test failed: button[10]: WM_LBUTTONUP on a button: 2: the msg 0x0135 was expected, but got msg 0x0215 instead msg.c:7143: Test failed: Expect hbmp to be NULL msg.c:7168: Test failed: Expect hicon to be NULL msg.c:7177: Test failed: Expect hicon to be NULL msg.c:7186: Test failed: Expect hbmp to be NULL msg.c:19367: Test failed: Original type 0xc, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xc, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xd, expected new type 0, got 0xc. msg.c:19367: Test failed: Original type 0xd, expected new type 0x1, got 0xd. msg.c:19367: Test failed: Original type 0xe, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xe, expected new type 0x1, got 0xf. msg.c:19367: Test failed: Original type 0xf, expected new type 0, got 0xe. msg.c:19367: Test failed: Original type 0xf, expected new type 0x1, got 0xf. msg.c:7406: Test failed: got 00000000 msg.c:7415: Test failed: got 00000000 msg.c:7440: Test failed: got 00000001 msg.c:7486: Test failed: got 00000000 msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 1: the msg 0x0101 was expected, but got msg 0x1606 instead msg.c:7498: Test failed: press/release VK_UP on auto-radio button: 2: the msg sequence is not complete: expected 0000 - actual 004e msg.c:7500: Test failed: got 00000000 msg.c:7510: Test failed: got 00000000 msg.c:7530: Test failed: got 00000000 Unhandled exception: page fault on read access to 0x0000000000280100 in 64-bit code (0x00000067d1bb20). static.c:116: Test failed: pixel should NOT be painted black! static.c:116: Test failed: pixel should NOT be painted black! static.c:191: Test failed: bmp != image static.c:195: Test failed: bmp != image static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 static.c:154: Test failed: bmBits is not NULL static.c:172: Test failed: bits: 05 09 0e 44 win.c:189: Test failed: didn't get start_event win.c:10344: Test failed: Timed out waiting for the child process win.c:10264: Test failed: transparent window didn't get WM_NCHITTEST message win.c:10265: Test failed: button under static window didn't get WM_LBUTTONUP