From: Rémi Bernon rbernon@codeweavers.com
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=43073 --- dlls/comctl32/tests/subclass.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+)
diff --git a/dlls/comctl32/tests/subclass.c b/dlls/comctl32/tests/subclass.c index e2e8573f4c0..f0bd8e08245 100644 --- a/dlls/comctl32/tests/subclass.c +++ b/dlls/comctl32/tests/subclass.c @@ -175,6 +175,9 @@ static LRESULT WINAPI wnd_proc_1(HWND hwnd, UINT message, WPARAM wParam, LPARAM msg.procnum = 1; add_message(&msg); } + if (message == WM_CHAR) { + ok(!(wParam & ~0xff), "got wParam %#Ix\n", wParam); + } return DefWindowProcA(hwnd, message, wParam, lParam); }
@@ -212,6 +215,10 @@ static LRESULT WINAPI wnd_proc_sub(HWND hwnd, UINT message, WPARAM wParam, LPARA SendMessageA(hwnd, WM_USER, wParam+1, 0); } } + if (message == WM_CHAR) { + todo_wine + ok(wParam == 0x30c2, "got wParam %#Ix\n", wParam); + } return pDefSubclassProc(hwnd, message, wParam, lParam); }
@@ -221,6 +228,8 @@ static void test_subclass(void) HWND hwnd = CreateWindowExA(0, "TestSubclass", "Test subclass", WS_OVERLAPPEDWINDOW, 100, 100, 200, 200, 0, 0, 0, NULL); ok(hwnd != NULL, "failed to create test subclass wnd\n"); + ret = IsWindowUnicode(hwnd); + ok(!ret, "got unicode window\n");
ret = pSetWindowSubclass(hwnd, wnd_proc_sub, 2, 0); ok(ret == TRUE, "Expected TRUE\n"); @@ -228,6 +237,11 @@ static void test_subclass(void) SendMessageA(hwnd, WM_USER, 2, 0); ok_sequence(Sub_BasicTest, "Basic");
+ ret = IsWindowUnicode(hwnd); + todo_wine + ok(ret, "got unicode window\n"); + SendMessageW(hwnd, WM_CHAR, 0x30c2, 1); + ret = pSetWindowSubclass(hwnd, wnd_proc_sub, 2, DELETE_SELF); ok(ret == TRUE, "Expected TRUE\n"); SendMessageA(hwnd, WM_USER, 1, 1);
From: Rémi Bernon rbernon@codeweavers.com
Final Fantasy XIV Online depends on this for its text input.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=43073 --- dlls/comctl32/comctl32.h | 1 + dlls/comctl32/commctrl.c | 29 +++++++++++++++++------------ dlls/comctl32/tests/subclass.c | 2 -- 3 files changed, 18 insertions(+), 14 deletions(-)
diff --git a/dlls/comctl32/comctl32.h b/dlls/comctl32/comctl32.h index 7dfdf089eb1..faff3f30717 100644 --- a/dlls/comctl32/comctl32.h +++ b/dlls/comctl32/comctl32.h @@ -209,6 +209,7 @@ typedef struct SUBCLASSPROCS *SubclassProcs; SUBCLASSPROCS *stackpos; WNDPROC origproc; + int is_unicode; int running; } SUBCLASS_INFO, *LPSUBCLASS_INFO;
diff --git a/dlls/comctl32/commctrl.c b/dlls/comctl32/commctrl.c index c5910b40869..9be205d8b02 100644 --- a/dlls/comctl32/commctrl.c +++ b/dlls/comctl32/commctrl.c @@ -1103,12 +1103,8 @@ BOOL WINAPI SetWindowSubclass (HWND hWnd, SUBCLASSPROC pfnSubclass, SetPropW (hWnd, COMCTL32_wSubclass, stack);
/* set window procedure to our own and save the current one */ - if (IsWindowUnicode (hWnd)) - stack->origproc = (WNDPROC)SetWindowLongPtrW (hWnd, GWLP_WNDPROC, - (DWORD_PTR)COMCTL32_SubclassProc); - else - stack->origproc = (WNDPROC)SetWindowLongPtrA (hWnd, GWLP_WNDPROC, - (DWORD_PTR)COMCTL32_SubclassProc); + stack->is_unicode = IsWindowUnicode (hWnd); + stack->origproc = (WNDPROC)SetWindowLongPtrW (hWnd, GWLP_WNDPROC, (DWORD_PTR)COMCTL32_SubclassProc); } else { /* Check to see if we have called this function with the same uIDSubClass @@ -1127,7 +1123,7 @@ BOOL WINAPI SetWindowSubclass (HWND hWnd, SUBCLASSPROC pfnSubclass, proc = Alloc(sizeof(SUBCLASSPROCS)); if (!proc) { ERR ("Failed to allocate subclass entry in stack\n"); - if (IsWindowUnicode (hWnd)) + if (stack->is_unicode) SetWindowLongPtrW (hWnd, GWLP_WNDPROC, (DWORD_PTR)stack->origproc); else SetWindowLongPtrA (hWnd, GWLP_WNDPROC, (DWORD_PTR)stack->origproc); @@ -1246,7 +1242,7 @@ BOOL WINAPI RemoveWindowSubclass(HWND hWnd, SUBCLASSPROC pfnSubclass, UINT_PTR u if (!stack->SubclassProcs && !stack->running) { TRACE("Last Subclass removed, cleaning up\n"); /* clean up our heap and reset the original window procedure */ - if (IsWindowUnicode (hWnd)) + if (stack->is_unicode) SetWindowLongPtrW (hWnd, GWLP_WNDPROC, (DWORD_PTR)stack->origproc); else SetWindowLongPtrA (hWnd, GWLP_WNDPROC, (DWORD_PTR)stack->origproc); @@ -1288,7 +1284,7 @@ static LRESULT WINAPI COMCTL32_SubclassProc (HWND hWnd, UINT uMsg, WPARAM wParam if (!stack->SubclassProcs && !stack->running) { TRACE("Last Subclass removed, cleaning up\n"); /* clean up our heap and reset the original window procedure */ - if (IsWindowUnicode (hWnd)) + if (stack->is_unicode) SetWindowLongPtrW (hWnd, GWLP_WNDPROC, (DWORD_PTR)stack->origproc); else SetWindowLongPtrA (hWnd, GWLP_WNDPROC, (DWORD_PTR)stack->origproc); @@ -1331,10 +1327,19 @@ LRESULT WINAPI DefSubclassProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar /* If we are at the end of stack then we have to call the original * window procedure */ if (!stack->stackpos) { - if (IsWindowUnicode (hWnd)) - ret = CallWindowProcW (stack->origproc, hWnd, uMsg, wParam, lParam); + BOOL unicode = IsWindowUnicode (hWnd); + WNDPROC proc; + /* original proc may have changed, we only need its original unicode/ansi nature */ + if (stack->is_unicode) + proc = (WNDPROC)SetWindowLongPtrW (hWnd, GWLP_WNDPROC, (DWORD_PTR)stack->origproc); + else + proc = (WNDPROC)SetWindowLongPtrA (hWnd, GWLP_WNDPROC, (DWORD_PTR)stack->origproc); + ret = CallWindowProcW (stack->origproc, hWnd, uMsg, wParam, lParam); + /* restore previous proc and original unicode/ansi nature */ + if (unicode) + SetWindowLongPtrW (hWnd, GWLP_WNDPROC, (DWORD_PTR)proc); else - ret = CallWindowProcA (stack->origproc, hWnd, uMsg, wParam, lParam); + SetWindowLongPtrW (hWnd, GWLP_WNDPROC, (DWORD_PTR)proc); } else { const SUBCLASSPROCS *proc = stack->stackpos; stack->stackpos = stack->stackpos->next; diff --git a/dlls/comctl32/tests/subclass.c b/dlls/comctl32/tests/subclass.c index f0bd8e08245..3345d8155f8 100644 --- a/dlls/comctl32/tests/subclass.c +++ b/dlls/comctl32/tests/subclass.c @@ -216,7 +216,6 @@ static LRESULT WINAPI wnd_proc_sub(HWND hwnd, UINT message, WPARAM wParam, LPARA } } if (message == WM_CHAR) { - todo_wine ok(wParam == 0x30c2, "got wParam %#Ix\n", wParam); } return pDefSubclassProc(hwnd, message, wParam, lParam); @@ -238,7 +237,6 @@ static void test_subclass(void) ok_sequence(Sub_BasicTest, "Basic");
ret = IsWindowUnicode(hwnd); - todo_wine ok(ret, "got unicode window\n"); SendMessageW(hwnd, WM_CHAR, 0x30c2, 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=128793
Your paranoid android.
=== debian11 (32 bit report) ===
comctl32: button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x0101 was expected, but got msg 0x002b instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 000f - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:1019: Test failed: WM_LBUTTONDOWN on a button: the msg sequence is not complete: expected 0007 - actual 0000
=== debian11 (32 bit zh:CN report) ===
comctl32: button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x0101 was expected, but got msg 0x002b instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 000f - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:1019: Test failed: WM_LBUTTONDOWN on a button: the msg sequence is not complete: expected 0007 - actual 0000
=== debian11b (64 bit WoW report) ===
comctl32: button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x0101 was expected, but got msg 0x002b instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 000f - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:1019: Test failed: WM_LBUTTONDOWN on a button: the msg sequence is not complete: expected 0007 - actual 0000
On Thu Jan 26 10:55:20 2023 +0000, **** wrote:
Marvin replied on the mailing list:
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=128793 Your paranoid android. === debian11 (32 bit report) === comctl32: button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x0101 was expected, but got msg 0x002b instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 000f - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:1019: Test failed: WM_LBUTTONDOWN on a button: the msg sequence is not complete: expected 0007 - actual 0000 === debian11 (32 bit zh:CN report) === comctl32: button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x0101 was expected, but got msg 0x002b instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 000f - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:1019: Test failed: WM_LBUTTONDOWN on a button: the msg sequence is not complete: expected 0007 - actual 0000 === debian11b (64 bit WoW report) === comctl32: button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:887: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:887: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 007d - actual 0000 button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:903: Test failed: BM_SETCHECK on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:903: Test failed: BM_SETCHECK on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x0101 was expected, but got msg 0x002b instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 000f - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007c was expected, but got msg 0x8000 instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg 0x007d was expected, but got msg 0x000f instead button.c:825: Test failed: BM_SETSTYLE on a button: the msg sequence is not complete: expected 8000 - actual 0000 button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x004e instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x004e was expected, but got msg 0x0101 instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg 0x1606 was expected, but got msg 0x000f instead button.c:998: Test failed: BCN_DROPDOWN from the button: the msg sequence is not complete: expected 0101 - actual 0000 button.c:1019: Test failed: WM_LBUTTONDOWN on a button: the msg sequence is not complete: expected 0007 - actual 0000
I'll have a look at these.